From 09626809013999b42f1930f1036debbd9b9db978 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Tue, 22 Aug 2017 21:47:11 +0200 Subject: Add manifest.json Follow the example for getting access to the "webRequest" API: https://developer.chrome.com/extensions/webRequest#manifest --- manifest.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 manifest.json 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/" + ] +} -- cgit v1.2.3