diff options
author | Florian Dold <florian.dold@gmail.com> | 2015-12-07 23:39:25 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2015-12-07 23:39:25 +0100 |
commit | 415570a720a7a74b2d25699a55d03403e6d6231a (patch) | |
tree | 1fb56e2adc5da40bfd7247a42b41e5cf6d9d69b0 /extension/manifest.json | |
parent | aeac228df7121dada4827ac248e61ba8b1db7318 (diff) |
Towards reserve creation.
Diffstat (limited to 'extension/manifest.json')
-rw-r--r-- | extension/manifest.json | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/extension/manifest.json b/extension/manifest.json index 9a1b1f3bf..0dad29ca6 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -26,12 +26,18 @@ "matches": ["*://*/*"], "js": [ "content_scripts/notify.js", - "lib/URI.js" + "lib/URI.js", + "lib/util.js" ], "run_at": "document_start" } ], + "web_accessible_resources": [ + "pages/*", + "lib/*" + ], + "background": { "scripts": [ "lib/util.js", |