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,
"name": "Quack!",
"version": "0.1.0",
"description": "Encrypt your messages anywhere on the web with post-quantum cryptography",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "src\/popup\/index.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background\/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/content-script.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"storage",
"clipboardWrite",
"activeTab",
"sidePanel"
],
"host_permissions": [
"<all_urls>"
],
"side_panel": {
"default_path": "sidepanel.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"assets\/*",
"chunks\/*",
"overlay-decrypt.html",
"overlay-decrypt.js",
"overlay-encrypt.html",
"overlay-encrypt.js",
"bubble-decrypt.html",
"bubble-decrypt.js"
],
"matches": [
"<all_urls>"
]
}
]
}