mirror of
https://github.com/michivonah/click-guide.git
synced 2025-12-22 22:16:28 +01:00
revert to scratch & create basic chrome extension
This commit is contained in:
parent
cfb4959168
commit
3363ec9acf
5 changed files with 40 additions and 98 deletions
|
|
@ -1,24 +1,24 @@
|
|||
{
|
||||
"manifest_version": 3,
|
||||
"name": "Cl1ck Gu1de",
|
||||
"version": "0.0.1",
|
||||
"description": "A browser add-on which records the steps clicked on a page and generates a easy to understand guide from it.",
|
||||
"background": {
|
||||
"service_worker": "background.js"
|
||||
},
|
||||
"permissions": ["tabs", "activeTab", "scripting"],
|
||||
"action": {
|
||||
"default_popup": "popup.html",
|
||||
"default_icon": {
|
||||
"manifest_version": 3,
|
||||
"name": "Cl1ck Gu1de",
|
||||
"version": "0.0.2",
|
||||
"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", "tabCapture", "tabs"],
|
||||
"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"]
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": ["<all_urls>"],
|
||||
"js": ["content.js"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue