mirror of
https://github.com/michivonah/click-guide.git
synced 2025-12-22 22:16:28 +01:00
25 lines
No EOL
712 B
JSON
25 lines
No EOL
712 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Cl1ck Gu1de",
|
|
"version": "0.0.4",
|
|
"description": "A browser add-on which records the steps clicked on a page and generates a easy to understand guide from it.",
|
|
"permissions": ["scripting", "activeTab", "downloads", "tabs", "storage"],
|
|
"host_permissions": ["<all_urls>"],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "assets/logo/color/logo16x16.png",
|
|
"48": "assets/logo/color/logo48x48.png",
|
|
"128": "assets/logo/color/logo128x128.png"
|
|
}
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"]
|
|
}
|
|
]
|
|
} |