33 lines
825 B
JSON
33 lines
825 B
JSON
|
{
|
||
|
"manifest_version": 2,
|
||
|
"name": "SE",
|
||
|
"version": "1.0.0",
|
||
|
"description": "Extension for SecureDataBank",
|
||
|
"icons": {
|
||
|
"128": "icon128.png",
|
||
|
"32": "icon32.png",
|
||
|
"48": "icon48.png"
|
||
|
},
|
||
|
"browser_action": {
|
||
|
"default_icon": {
|
||
|
"16": "icon16.png",
|
||
|
"32": "icon32.png"
|
||
|
},
|
||
|
"default_title": "Extension for SecureDataBank"
|
||
|
},
|
||
|
"content_security_policy": "script-src 'self' https://unpkg.com/ https://fonts.googleapis.com/ https://cdn.datatables.net/ https://maxcdn.bootstrapcdn.com/ https://ajax.googleapis.com/ https://cdnjs.cloudflare.com/; object-src 'self'",
|
||
|
"background":
|
||
|
{
|
||
|
"scripts": ["background.js"],
|
||
|
"persistent": false
|
||
|
},
|
||
|
"content_scripts": [
|
||
|
{
|
||
|
"matches": ["<all_urls>"],
|
||
|
"js": ["content.js"],
|
||
|
"run_at": "document_end"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
|