Inspect and view changes in DonorsClicks 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "DonorsClicks",
"version": "0.0.2",
"description": "Donate your clicks to DonorsChoose. All Amazon links are updated with a tracking tag. 100% of commissions donated to DonorsChoose.",
"author": "Scott Nixon",
"icons": {
"128": "/img/logo.png"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"/js/URI.min.js",
"/js/content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"options_ui": {
"page": "/options/options.html",
"chrome_style": false
},
"permissions": [
"storage",
"*://*/*"
]
}