Inspect and view changes in Adaptive Theme 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
{
"description": "Adaptive Theme",
"manifest_version": 2,
"name": "Adaptive Theme",
"permissions": [
"tabs",
"storage",
"<all_urls>",
"theme"
],
"background": {
"scripts": [
"constants.js",
"background.js"
]
},
"options_ui": {
"page": "options.html"
},
"version": "0.99.0",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "icons/icon.svg",
"24": "icons/icon.svg",
"32": "icons/icon.svg",
"64": "icons/icon.svg",
"128": "icons/icon.svg",
"256": "icons/icon.svg"
},
"applications": {
"gecko": {
"id": "adaptive-theme@jackymancs4",
"strict_min_version": "58.0"
}
}
}