A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
513 B
28 lines
513 B
{ |
|
"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_start", |
|
"match_about_blank": true |
|
} |
|
], |
|
"background": { |
|
"scripts": [ |
|
"build/background.js" |
|
] |
|
}, |
|
"permissions": [ |
|
"history", |
|
"sessions", |
|
"storage", |
|
"tabs", |
|
"clipboardRead", |
|
"activeTab" |
|
] |
|
}
|
|
|