diff options
author | Teddy Wing | 2017-08-22 21:47:11 +0200 |
---|---|---|
committer | Teddy Wing | 2017-08-23 00:21:25 +0200 |
commit | 09626809013999b42f1930f1036debbd9b9db978 (patch) | |
tree | 2966c87622d30bf95668d8e3cf4f0e1f5c69f433 | |
download | chrome-come-on-github-javascript-09626809013999b42f1930f1036debbd9b9db978.tar.bz2 |
Add manifest.json
Follow the example for getting access to the "webRequest" API:
https://developer.chrome.com/extensions/webRequest#manifest
-rw-r--r-- | manifest.json | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..b50d7cb --- /dev/null +++ b/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 2, + + "name": "Come on GitHub JavaScript", + "description": "Run GitHub JavaScript on old browsers.", + "version": "0.0.1", + + "permissions": [ + "webRequest", + "https://*.github.com/" + ] +} |