diff options
author | hackademix <giorgio@maone.net> | 2018-08-20 14:18:15 +0200 |
---|---|---|
committer | hackademix <giorgio@maone.net> | 2018-08-20 14:18:15 +0200 |
commit | df1348420bdcfc2d089e77ea0303dbd55144c407 (patch) | |
tree | f96899379de80076a2ab70986e600ee146f29357 /manifest.json | |
parent | 63f3970ac6424c8627c2d055609f60024e93082c (diff) |
WebLabels-based license checking implementation.
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 14 |
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" + ] + } + ] } |