aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
authorhackademix <giorgio@maone.net>2018-08-20 14:18:15 +0200
committerhackademix <giorgio@maone.net>2018-08-20 14:18:15 +0200
commitdf1348420bdcfc2d089e77ea0303dbd55144c407 (patch)
treef96899379de80076a2ab70986e600ee146f29357 /manifest.json
parent63f3970ac6424c8627c2d055609f60024e93082c (diff)
WebLabels-based license checking implementation.
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json14
1 files changed, 12 insertions, 2 deletions
diff --git a/manifest.json b/manifest.json
index 17f8670..8356a9c 100644
--- a/manifest.json
+++ b/manifest.json
@@ -41,6 +41,16 @@
],
"background": {
"scripts": ["bundle.js"]
- }
-
+ },
+ "content_scripts": [
+ {
+ "run_at": "document_start",
+ "matches": ["<all_urls>"],
+ "match_about_blank": true,
+ "all_frames": true,
+ "js": [
+ "content/externalLicenseChecker.js"
+ ]
+ }
+ ]
}