{ "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": [""], "js": ["./ug-copy.js"] } ] }