A tool to Eradicate Flagged content
A one stop solution to identify misleading information circulated over the Internet
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": "ScrapShut",
"description": "A tool to Eradicate Flagged content",
"version": "1.1.8",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://*.facebook.com/*",
"*://*.google.com/*",
"*://*.scrapshut.com/*"
],
"js": [
"popup.js",
"jquery.min.js",
"bg.js"
]
}
],
"background": {
"scripts": [
"jquery.min.js",
"bg.js",
"popup.js"
]
},
"permissions": [
"storage",
"activeTab",
"*://*.scrapshut.com/*",
"tabs",
"http://*.facebook.com/*",
"https://backend.scrapshut.com/a/",
"http://*.google.com/*"
]
}