manifest.json 414 B

123456789101112131415
  1. {
  2. "name": "Copy Link Address",
  3. "version": "0.1",
  4. "description": "Copy link address without right-clicking. Just hover the link hit Ctrl-C / Cmd-C!",
  5. "content_scripts": [
  6. {
  7. "matches": ["<all_urls>"],
  8. "js": ["jquery-latest.min.js", "copylinkaddress.js"]
  9. }
  10. ],
  11. "icons": {
  12. "48": "/icons/icon48.png",
  13. "128": "/icons/icon128.png"
  14. }
  15. }