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": "Precise Selector",
"version": "0.0.1",
"description": "Cross-browser starter extension",
"action": {
"default_title": "Click to open panel"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
],
"side_panel": {
"default_path": "sidepanel.html"
},
"permissions": [
"activeTab",
"sidePanel",
"tabs"
],
"icons": {
"128": "icon.png"
}
}