mirror of
https://github.com/michivonah/click-guide.git
synced 2025-12-22 22:16:28 +01:00
beginn development of MVP
This commit is contained in:
parent
38ef57f310
commit
cfb4959168
12 changed files with 138 additions and 0 deletions
24
chrome/manifest.json
Normal file
24
chrome/manifest.json
Normal file
|
|
@ -0,0 +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": {
|
||||
"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"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue