Inspect and view changes in VivaldiFox 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": "VivaldiFox",
"author": "Tim Nguyen",
"version": "3.6",
"icons": {
"16": "icon.svg",
"32": "icon.svg",
"48": "icon.svg",
"96": "icon.svg"
},
"description": "An add-on that allows colouring Firefox in a Vivaldi style fashion.",
"permissions": [
"theme",
"tabs",
"storage",
"alarms",
"browserSettings"
],
"optional_permissions": [
"<all_urls>"
],
"background": {
"scripts": [
"shared/settings.js",
"background/constants.js",
"background/color.js",
"background/addon-state.js",
"background/favicon-utils.js",
"background/color-utils.js",
"background/theme.js",
"background/background.js"
]
},
"commands": {
"_execute_browser_action": {}
},
"options_ui": {
"page": "options/options.html",
"browser_style": false,
"open_in_tab": true
},
"browser_action": {
"default_title": "VivaldiFox",
"default_icon": "icon.svg"
},
"applications": {
"gecko": {
"strict_min_version": "61.0a1",
"id": "@vivaldi-fox"
}
}
}