Inspect and view changes in EDU Shop Marketplace 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": "EDU Shop Marketplace",
"version": "1.27.1",
"description": "You Donate While You Shop - Shop at participating online merchants and a portion of the transaction goes directly to your schools.",
"background": {
"page": "background.html"
},
"icons": {
"48": "images/48.png",
"128": "images/128.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"js/jquery-1.8.2.min.js",
"js/popup.js",
"js/injected.js"
],
"css": [
"css/style.css",
"css/jquery.fancybox.css"
],
"run_at": "document_end"
}
],
"permissions": [
"http://*/*",
"https://*/*"
]
}