diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-02-04 17:48:18 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-02-04 17:48:35 +0900 |
commit | 2362f68fcb1a9994fe6395673b71348660678c7d (patch) | |
tree | 90122a3e593188cae50225e9861e77e05fc24fb3 /e2e/ambassador | |
parent | 8ff200755f6b3661c405b14fe1ff6dc5b0f17dbd (diff) |
ambassador
Diffstat (limited to 'e2e/ambassador')
-rw-r--r-- | e2e/ambassador/manifest.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/e2e/ambassador/manifest.json b/e2e/ambassador/manifest.json new file mode 100644 index 0000000..9f3e063 --- /dev/null +++ b/e2e/ambassador/manifest.json @@ -0,0 +1,27 @@ +{ + "manifest_version": 2, + "name": "ambassador", + "description": "WebExtension test helper", + "version": "0.1", + "content_scripts": [ + { + "all_frames": true, + "matches": [ "<all_urls>" ], + "js": [ "build/content.js" ], + "run_at": "document_end", + "match_about_blank": true + } + ], + "background": { + "scripts": [ + "build/background.js" + ] + }, + "permissions": [ + "history", + "sessions", + "storage", + "tabs", + "clipboardRead" + ] +} |