Inspect and view changes in Ghost It 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
{
"manifest_version": 2,
"name": "Ghost It",
"version": "2",
"description": "Easily make unwanted web elements invisible",
"developer": {
"name": "Tony Fischetti",
"url": "https://tonyfischettiart.com"
},
"permissions": [
"menus",
"activeTab",
"tabs",
"webRequest",
"<all_urls>",
"storage"
],
"icons": {
"48": "icons/small.png",
"96": "icons/big.png"
},
"browser_action": {
"default_icon": "icons/small.png",
"default_title": "Ghost It"
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"background": {
"scripts": [
"background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "{c0c566e4-e811-4b3a-822b-27b03bc5dd1f}",
"strict_min_version": "58.0"
}
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"file://*/*"
],
"js": [
"ghost-it.js"
],
"run_at": "document_start",
"all_frames": true
}
]
}