This extension allows the user to know his Carbon footprint.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"icons": {
"128": "Images/v1.2.png"
},
"name": "Green Leaf",
"description": "This extension allows the user to know his Carbon footprint.",
"version": "1.6",
"permissions": [
"webRequest",
"<all_urls>",
"tabs",
"storage",
"alarms",
"notifications"
],
"browser_action": {
"default_icon": "Images/v1.2.png",
"default_popup": "index.html"
},
"background": {
"scripts": [
"eventFile.js"
]
},
"content_security_policy": "script-src 'self' https://use.fontawesome.com/releases/v5.0.7/js/all.js https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.js; object-src 'self'"
}