Inspect and view changes in Save Pinned 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",
"manifest_version": 3,
"name": "Save Pinned Tabs",
"short_name": "Save Pinned",
"version": "2.0.0",
"description": "Save your current pinned tabs.",
"icons": {
"32": "images/icon_32.png",
"64": "images/icon_64.png",
"128": "images/icon_128.png"
},
"permissions": [
"tabs",
"storage"
],
"action": {
"default_icon": {
"32": "images/icon_32.png",
"64": "images/icon_64.png",
"128": "images/icon_128.png"
},
"default_popup": "popup.html",
"default_title": "Save pinned tabs"
},
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
}