This commit is contained in:
2026-06-26 20:45:01 -04:00
commit cb316b9762
6 changed files with 80 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
{
"manifest_version": 3,
"name": "ug-copy-extention",
"version": "1.0",
"description": "Adds a copy tab button to ultimate-guitar.com chord and tab pages.",
"icons": {
"48": "./icons/border-48.png",
"96": "./icons/border-96.png"
},
"browser_action": {
"default_title": "UG Copy",
"default_icons": {
"48": "./icons/border-48.png",
"96": "./icons/border-96.png"
},
"default_popup": "popup/index.html"
},
"browser_specific_settings": {
"gecko": {
"id": "ug-copy@mozilla.org",
"data_collection_permissions": {
"required": ["none"]
}
}
},
"content_scripts": [
{
// "matches": ["*://tabs.ultimate-guitar.com/tab/**"],
"matches": ["<all_urls>"],
"js": ["./ug-copy.js"]
}
]
}