manifest.json 798 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "manifest_version": 2,
  3. "name": "Emby Tools.",
  4. "version": "1.0.0",
  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. "include_globs": ["*://*:8096/*", "*://*:12308/*"],
  23. "css": ["static/css/style.css"],
  24. "js": ["static/js/jquery-3.6.0.min.js", "static/js/common-utils.js", "static/js/md5.js", "content/main.js"],
  25. "run_at": "document_end"
  26. }
  27. ],
  28. "permissions": ["http://*/*", "https://*/*", "<all_urls>"]
  29. }