Effortlessly retrieve QR code data and visit the associated web link.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_extName__",
"description": "Effortlessly retrieve QR code data and visit the associated web link.",
"options_ui": {
"page": "src/pages/options/index.html"
},
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"action": {
"default_popup": "src/pages/popup/index.html",
"default_icon": {
"32": "icon-32.png"
}
},
"chrome_url_overrides": {},
"icons": {
"128": "icon-128.png"
},
"permissions": [
"activeTab",
"contextMenus"
],
"content_scripts": [
{
"js": [
"assets/content-script-loader.index.tsx-70977992-f49d8095.js"
],
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"css": [
"contentStyle.css"
]
}
],
"devtools_page": "src/pages/devtools/index.html",
"web_accessible_resources": [
{
"matches": [],
"resources": [
"contentStyle.css",
"icon-128.png",
"icon-32.png"
],
"use_dynamic_url": false
},
{
"matches": [
"<all_urls>",
"http://*/*",
"https://*/*"
],
"resources": [
"assets/message-d14785ea.js",
"assets/_commonjsHelpers-725317a4.js",
"assets/index.tsx-70977992.js"
],
"use_dynamic_url": true
}
],
"default_locale": "en",
"version": "1.1.0",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}