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": "Source Detector",
"version": "1.0.0",
"description": "A powerful tool for developers to automatically detect, collect, and analyze source maps and CRX files from websites",
"permissions": [
"tabs",
"webRequest",
"declarativeNetRequest"
],
"host_permissions": [
"<all_urls>"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules\/rules.json"
}
]
},
"background": {
"service_worker": "background\/index.js",
"type": "module"
},
"action": {
"default_popup": "popup\/index.html",
"default_icon": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
},
"icons": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"options_page": "pages\/settings\/index.html",
"web_accessible_resources": [
{
"resources": [
"assets\/*",
"assets\/**\/*",
"*.js",
"**\/*.js",
"**\/*.css",
"**\/*.ttf",
"**\/*.woff",
"**\/*.woff2",
"vs\/*",
"vs\/**\/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; worker-src 'self'"
},
"minimum_chrome_version": "88"
}