Inspect and view changes in ReTab 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": 2,
"name": "ReTab",
"short_name": "retab",
"description": "ReTab enables you to save current tabs and windows in custom profiles which can then be loaded at your convenience!",
"version": "1.1.1",
"icons": {
"16": "./media/retab-16.png",
"32": "./media/retab-32.png",
"48": "./media/retab-48.png",
"64": "./media/retab-64.png"
},
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "./media/retab-16.png",
"32": "./media/retab-32.png"
},
"default_popup": "./html/popup.html",
"default_title": "ReTab"
},
"browser_specific_settings": {
"gecko": {
"id": "{caa6ed5e-3000-487c-ac10-cb11284e9b8d}",
"strict_min_version": "57.0"
}
},
"options_ui": {
"page": "./html/options.html",
"browser_style": true
},
"background": {
"scripts": [
"./scripts/libs/jquery-3.4.1.slim.min.js",
"./scripts/helper.js",
"./scripts/background.js"
]
},
"permissions": [
"storage",
"tabs",
"contextualIdentities",
"cookies"
]
}