Last active
April 3, 2018 10:43
-
-
Save ewauq/b4c2f876d084576749dfb32a9cc49e00 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Optiscrap", | |
"version": "0.1", | |
"manifest_version": 2, | |
"description": "Block all useless things to speed up the scraping process.", | |
"background": { | |
"scripts": [ "background.js" ] | |
}, | |
"icons": { | |
"128" : "images/icon.png" | |
}, | |
"browser_action": { | |
"default_icon": "images/icon.png" | |
}, | |
"permissions": [ | |
"webRequest", | |
"webRequestBlocking", | |
"http://*/*", | |
"https://*/*" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment