Files
Hellion-NewTab/manifest.json
T

47 lines
1.0 KiB
JSON

{
"manifest_version": 3,
"name": "__MSG_extName__",
"default_locale": "en",
"version": "2.3.0",
"description": "__MSG_extDesc__",
"author": "Hellion Online Media - Florian Wathling",
"homepage_url": "https://hellion-media.de",
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"background": {
"service_worker": "src/js/background.js"
},
"action": {
"default_title": "Hellion Dashboard"
},
"commands": {
"quick-save": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "Alt+Shift+S"
},
"description": "__MSG_cmdQuickSave__"
}
},
"permissions": [
"storage",
"bookmarks",
"activeTab"
],
"web_accessible_resources": [
{
"resources": ["assets/fonts/*.woff2"],
"matches": ["<all_urls>"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"icons": {
"16": "assets/icons/icon16.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
}
}