manifest.json 844 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "manifest_version": 2,
  3. "name": "Chad-music magnets",
  4. "version": "1.0",
  5. "description": "Adds button to torrent magnet links to upload to chad-music",
  6. "icons": {
  7. "256": "logo256.png"
  8. },
  9. "browser_action": {
  10. "default_icon": "logo256.png",
  11. "default_title": "Chad Music"
  12. },
  13. "options_ui": {
  14. "page": "options.html",
  15. "browser_style": true,
  16. "chrome_style": true
  17. },
  18. "background": {
  19. "scripts": ["background.js"]
  20. },
  21. "content_scripts": [
  22. {
  23. "matches": ["<all_urls>"],
  24. "js": ["chadify.js"]
  25. }
  26. ],
  27. "web_accessible_resources": [
  28. "logo256.png"
  29. ],
  30. "permissions": ["storage",
  31. "https://chatikbot.chad-partners.com/*"],
  32. "browser_specific_settings": {
  33. "gecko": {
  34. "id": "music@chad-partners.com",
  35. "strict_min_version": "42.0"
  36. }
  37. }
  38. }