Inspect and view changes in Save The Tabs source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "0.1",
"name": "Save The Tabs",
"manifest_version": 3,
"offline_enabled": true,
"short_name": "save-the-tabs",
"permissions": [
"tabs",
"storage"
],
"homepage_url": "https://worldaddons.com/save-the-tabs/",
"description": "Save The Tabs - Save and restore all open tabs from the toolbar popup!",
"commands": {
"_execute_action": {}
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Save The Tabs",
"default_popup": "source/popup/popup.html",
"default_icon": {
"16": "source/icons/16.png",
"32": "source/icons/32.png",
"48": "source/icons/48.png",
"64": "source/icons/64.png"
}
},
"icons": {
"16": "source/icons/16.png",
"32": "source/icons/32.png",
"48": "source/icons/48.png",
"64": "source/icons/64.png",
"128": "source/icons/128.png"
}
}