aboutsummaryrefslogtreecommitdiff
path: root/e2e/ambassador
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-02-04 17:48:18 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-02-04 17:48:35 +0900
commit2362f68fcb1a9994fe6395673b71348660678c7d (patch)
tree90122a3e593188cae50225e9861e77e05fc24fb3 /e2e/ambassador
parent8ff200755f6b3661c405b14fe1ff6dc5b0f17dbd (diff)
ambassador
Diffstat (limited to 'e2e/ambassador')
-rw-r--r--e2e/ambassador/manifest.json27
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"
+ ]
+}