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": "__MSG_extensionName__",
"version": "1.0.10",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
"16": "assets\/icons\/icon-16.png",
"32": "assets\/icons\/icon-32.png",
"48": "assets\/icons\/icon-48.png",
"128": "assets\/icons\/icon-128.png"
},
"action": {
"default_popup": "src\/popup\/popup.html",
"default_icon": {
"16": "assets\/icons\/icon-16.png",
"32": "assets\/icons\/icon-32.png"
},
"default_title": "Web Scraper Lite"
},
"side_panel": {
"default_path": "src\/sidepanel\/sidepanel.html"
},
"background": {
"service_worker": "src\/background.js",
"type": "module"
},
"permissions": [
"activeTab",
"storage",
"sidePanel",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src\/utils\/security.js",
"src\/content\/error-capture.js",
"src\/content\/content.js"
],
"css": [
"src\/content\/content.css"
],
"run_at": "document_idle"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'none'; base-uri 'none'; form-action 'none';"
}
}