Files added to repository

This commit is contained in:
2023-06-18 21:12:32 +02:00
commit 8a331d18a6
20 changed files with 3478 additions and 0 deletions

32
manifest.json Normal file
View File

@@ -0,0 +1,32 @@
{
"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"
}
]
}