Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_appName__",
"version": "1.0.3",
"description": "__MSG_appDesc__",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage",
"activeTab",
"clipboardWrite"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "assets\/background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html",
"default_title": "Korte"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "__MSG_cmdOpen__"
},
"create-snippet": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "__MSG_cmdCreateSnippet__"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"assets\/content.js"
],
"all_frames": true,
"match_about_blank": true
}
],
"web_accessible_resources": [
{
"resources": [
"success.html",
"cancel.html",
"assets\/pdf.worker.min.mjs"
],
"matches": [
"<all_urls>"
]
}
]
}