initialized extension with basic functionality
This commit is contained in:
29
manifest.json
Normal file
29
manifest.json
Normal file
@@ -0,0 +1,29 @@
|
||||
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "Formatter + Linkify",
|
||||
"version": "1.0.0",
|
||||
"description": "Formatiert JSON direkt im Tab, optional automatisch.",
|
||||
"permissions": ["activeTab", "storage", "contextMenus", "scripting"],
|
||||
"optional_host_permissions": ["<all_urls>"],
|
||||
"background": { "service_worker": "background.js" },
|
||||
"options_page": "options.html",
|
||||
"action": { "default_title": "JSON manuell formatieren" },
|
||||
"icons": {
|
||||
"128": "icon128.png"
|
||||
},
|
||||
"web_accessible_resources":[
|
||||
{
|
||||
"resources":[
|
||||
"vendor/highlightjs/highlight.min.js",
|
||||
"vendor/highlightjs/languages/*.js",
|
||||
"vendor/highlightjs/es/core.min.js",
|
||||
"vendor/highlightjs/es/highlight.min.js",
|
||||
"vendor/highlightjs/es/languages/*.js",
|
||||
"vendor/highlightjs/styles/*.css",
|
||||
"vendor/highlightjs/styles/base16/*.css"
|
||||
],
|
||||
"matches": ["<all_urls>"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user