manifest.json 913 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "manifest_version": 2,
  3. "name": "脚本助手",
  4. "version": "1.1.28",
  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. "background": {
  17. "persistent": true,
  18. "scripts": ["background.js"]
  19. },
  20. "content_scripts": [
  21. {
  22. "matches": ["<all_urls>"],
  23. "js": ["insert.js"],
  24. "all_frames": true,
  25. "run_at": "document_start"
  26. }
  27. ],
  28. "permissions": [
  29. "storage",
  30. "background",
  31. "activeTab",
  32. "webRequest",
  33. "webRequestBlocking",
  34. "notifications",
  35. "http://*/*",
  36. "https://*/*"
  37. ],
  38. "externally_connectable": {
  39. "matches": ["*://*.tlscontact.com/*"]
  40. },
  41. "homepage_url": "https://github.com/PUGE",
  42. "options_page": "options.html",
  43. "options_ui": {
  44. "page": "options.html",
  45. "chrome_style": true
  46. }
  47. }