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": "Spider ListCrawling Extension",
"version": "2.0.3",
"description": "Web page element selection and data extraction tool",
"permissions": [
"activeTab",
"sidePanel",
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "ListCrawling"
},
"side_panel": {
"default_path": "src\/sidepanel\/index.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "favicon\/icon-16.png",
"48": "favicon\/icon-48.png",
"128": "favicon\/icon-128.png"
},
"web_accessible_resources": [
{
"resources": [
"preview.html",
"preview.css",
"js\/*",
"exceljs.min.js",
"FileSaver.min.js",
"xlsx.full.min.js",
"test-extension-context.html",
"test-background-api.html",
"test-storage-fix.html"
],
"matches": [
"<all_urls>"
]
}
]
}