manifest.json 441 B

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