ambassador

This commit is contained in:
Shin'ya Ueoka 2018-02-04 17:48:18 +09:00
parent 8ff200755f
commit 2362f68fcb
2 changed files with 28 additions and 1 deletions

View file

@ -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"
]
}