manifest.json 904 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "manifest_version": 2,
  3. "name": "Attach from Clipboard",
  4. "description": "Create message attachments directly from the system clipboard.",
  5. "version": "1.78.1",
  6. "author": "Michael Ganss",
  7. "homepage_url": "https://www.updatestar.com/dl/clipboard/clipboard.html",
  8. "applications": {
  9. "gecko": {
  10. "id": "clipboard@ganss.org",
  11. "strict_min_version": "78.0"
  12. }
  13. },
  14. "icons": {
  15. "32": "chrome/skin/icon.svg",
  16. "48": "chrome/skin/icon.svg",
  17. "96": "chrome/skin/icon.svg"
  18. },
  19. "experiment_apis": {
  20. "WindowListener": {
  21. "schema": "api/WindowListener/schema.json",
  22. "parent": {
  23. "scopes": ["addon_parent"],
  24. "paths": [["WindowListener"]],
  25. "script": "api/WindowListener/implementation.js"
  26. }
  27. }
  28. },
  29. "background": {
  30. "scripts": [
  31. "background.js"
  32. ]
  33. },
  34. "default_locale": "en",
  35. "permissions": ["clipboardRead"]
  36. }