48 lines
1.0 KiB
JSON
48 lines
1.0 KiB
JSON
{
|
|
"$schema": "http://json.schemastore.org/webextension",
|
|
"manifest_version": 2,
|
|
"name": "WebExtension Template",
|
|
"description": "An opinionated WebExtension template.",
|
|
"version": "0.1.0",
|
|
"permissions": [
|
|
"downloads",
|
|
"storage",
|
|
"*://example.org/*"
|
|
],
|
|
"content_security_policy": "script-src 'self'; object-src 'self'; style-src 'unsafe-inline'",
|
|
"web_accessible_resources": [
|
|
"assets/**"
|
|
],
|
|
"icons": {
|
|
"128": "assets/web-ext-template-logo.png"
|
|
},
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"128": "assets/web-ext-template-logo.png"
|
|
}
|
|
},
|
|
"options_ui": {
|
|
"page": "options/index.html",
|
|
"open_in_tab": true
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"background-scripts/initialize.ts"
|
|
]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"*://example.org/*"
|
|
],
|
|
"run_at": "document_end",
|
|
"css": [
|
|
"content-scripts/content-styles.scss"
|
|
],
|
|
"js": [
|
|
"content-scripts/initialize.ts"
|
|
]
|
|
}
|
|
]
|
|
}
|