manifest.json 754 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "manifest_version": 2,
  3. "name": "脚本助手",
  4. "version": "1.0.8",
  5. "description": "脚本助手",
  6. "icons": {
  7. "16": "./img/16.png",
  8. "48": "./img/48.png",
  9. "128": "./img/128.png"
  10. },
  11. "browser_action": {
  12. "default_icon": "img/48.png",
  13. "default_title": "脚本助手",
  14. "default_popup": "popup.html"
  15. },
  16. "content_scripts": [
  17. {
  18. "matches": ["<all_urls>"],
  19. "js": ["insert.js"],
  20. "all_frames": true,
  21. "run_at": "document_end"
  22. }
  23. ],
  24. "permissions": [
  25. "activeTab",
  26. "notifications",
  27. "https://going.run/*"
  28. ],
  29. "homepage_url": "https://github.com/PUGE",
  30. "options_page": "options.html",
  31. "update_url": "https://cunchu.site/work/script/updateInfo.xml",
  32. "options_ui": {
  33. "page": "options.html",
  34. "chrome_style": true
  35. }
  36. }