manifest.json 747 B

12345678910111213141516171819202122232425262728
  1. {
  2. "manifest_version": 2,
  3. "name": "Emby Tools.",
  4. "version": "1.0.2",
  5. "description": "Misty Emby Tools.",
  6. "author": "Nolovenodie",
  7. "homepage_url": "https://ssky.me",
  8. "icons": {
  9. "16": "static/img/icon.png",
  10. "19": "static/img/icon.png",
  11. "38": "static/img/icon.png",
  12. "48": "static/img/icon.png",
  13. "128": "static/img/icon.png"
  14. },
  15. "browser_action": {
  16. "default_icon": "static/img/icon.png",
  17. "default_title": "Misty Tools."
  18. },
  19. "content_scripts": [
  20. {
  21. "matches": ["<all_urls>"],
  22. "css": ["static/css/style.css"],
  23. "js": ["static/js/jquery-3.6.0.min.js", "static/js/common-utils.js", "static/js/md5.min.js", "content/main.js"],
  24. "run_at": "document_end"
  25. }
  26. ],
  27. "permissions": ["http://*/*", "https://*/*", "<all_urls>"]
  28. }