manifest.json 630 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "manifest_version": 2,
  3. "name": "脚本助手",
  4. "version": "1.0.3",
  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. "http://127.0.0.1/*",
  22. "http:/154.8.196.163/*"
  23. ],
  24. "homepage_url": "https://github.com/PUGE",
  25. "options_page": "options.html",
  26. "options_ui":
  27. {
  28. "page": "options.html",
  29. "chrome_style": true
  30. }
  31. }