Inspect and view changes in Open tabs in order 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": "Open tabs in order",
"version": "1.0.5.21",
"version_name": "0.0.5.21",
"description": "__MSG_extDescription__",
"default_locale": "en",
"icons": {
"128": "/icon/icon_128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/js/stop.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "serviceworker.js"
},
"permissions": [
"tabs",
"storage"
]
}