37 lines
708 B
JSON
37 lines
708 B
JSON
{
|
|
"manifest_version": 3,
|
|
"version": "1.0",
|
|
"name": "my-extension",
|
|
"description": "A minimum extension template. This template includes a manifest file.",
|
|
"author": "Your Name",
|
|
|
|
"permissions": [
|
|
"storage"
|
|
],
|
|
|
|
"host_permissions": [
|
|
"http://localhost:5000/*"
|
|
],
|
|
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' http://localhost:5000"
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*/*"],
|
|
"js": ["src/borderify.js"]
|
|
}
|
|
],
|
|
|
|
"options_ui": {
|
|
"page": "options.html",
|
|
"open_in_tab": true
|
|
},
|
|
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "addon@example.com"
|
|
}
|
|
}
|
|
} |