Inspect and view changes in My Tabs Saver: Quick Tab 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",
"manifest_version": 2,
"name": "My Tabs Saver: Quick Tab",
"short_name": "Quick Tab+",
"version": "1.0.0",
"description": "Save multiple(several) open tabs for reducing system memory so that browser and system can run fast and smothly",
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"browser_action": {
"default_icon": "icons/icon-16.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js",
"jquery-3.5.1.min.js"
],
"persistent": false
},
"options_page": "options.html",
"permissions": [
"tabs",
"storage",
"notifications",
"chrome://favicon/"
]
}