Inspect and view changes in One Tab per Window 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
{
"manifest_version": 3,
"name": "One Tab per Window",
"version": "0.1.0",
"permissions": [
"tabs"
],
"description": "When a new tab is opened, redirects it to a new window instead.",
"browser_specific_settings": {
"gecko": {
"id": "onetab@nonexistenturl.net"
}
},
"background": {
"scripts": [
"background.js"
]
},
"action": {
"browser_style": true,
"default_icon": "icon.svg",
"default_title": "One Tab",
"default_popup": "popup.html"
}
}