manifest.json 539 B

12345678910111213141516171819
  1. {
  2. "manifest_version": 2,
  3. "name": "Copy URL on Hover",
  4. "version": "0.6.0",
  5. "description": "Hover over a link and hit Y to yank (copy) it like a real vim user! For feedback, a pop sound will be played after copying.",
  6. "content_scripts": [
  7. {
  8. "matches": ["<all_urls>"],
  9. "js": ["jquery-3.6.0.min.js", "copylinkaddress.js"]
  10. }
  11. ],
  12. "icons": {
  13. "48": "/icons/icon48.png",
  14. "128": "/icons/icon128.png"
  15. },
  16. "web_accessible_resources": [
  17. "sounds/pop.mp3"
  18. ]
  19. }