Inspect and view changes in Page Eraser 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": "http://clients2.google.com/service/update2/crx",
"name": "Page Eraser",
"version": "2.2.1",
"manifest_version": 2,
"description": "Easily erase unwanted elements from web pages.",
"minimum_chrome_version": "20",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon32.png"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"css": [],
"js": [
"jquery-1.7.2.min.js",
"jquery.copyCSS.js",
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"page": "background.html"
},
"permissions": [
"tabs",
"storage"
],
"incognito": "split",
"web_accessible_resources": [
"cursor24.png"
]
}