Inspect and view changes in TreeClicks - Plant Trees while Shopping Online 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
{
"name": "TreeClicks - Plant Trees while Shopping",
"short_name": "TreeClicks",
"version": "0.0.8.5",
"manifest_version": 2,
"description": "__MSG_appDesc__",
"homepage_url": "https://www.treeclicks.com",
"icons": {
"16": "icons/logo-inactive.png",
"48": "icons/logo-active2.png",
"128": "icons/logo-active2.png"
},
"default_locale": "en",
"content_scripts": [
{
"js": [
"src/content.js"
],
"matches": [
"*://*/*"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"src/backgrounds/background.js"
],
"persistent": true
},
"web_accessible_resources": [
"icons/logo-active2.png"
],
"options_page": "src/options.html",
"browser_action": {
"default_icon": "icons/logo-inactive.png",
"default_title": "TreeClicks",
"default_popup": "src/browser_action/popup.html"
},
"permissions": [
"notifications",
"https://*/*",
"http://*/*",
"tabs",
"storage",
"alarms"
]
}