manifest.json 604 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "manifest_version": 2,
  3. "name": "脚本助手",
  4. "version": "1.0.5",
  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": "这是一个示例Chrome插件",
  14. "default_popup": "popup.html"
  15. },
  16. "content_scripts": [],
  17. "permissions": [
  18. "activeTab",
  19. "notifications",
  20. "webRequest",
  21. "https://going.run/*"
  22. ],
  23. "homepage_url": "https://github.com/PUGE",
  24. "options_page": "options.html",
  25. "options_ui":
  26. {
  27. "page": "options.html",
  28. "chrome_style": true
  29. }
  30. }