manifest.json 549 B

1234567891011121314151617181920212223242526
  1. {
  2. "manifest_version": 3,
  3. "name": "医生语音助手",
  4. "version": "2.0.0",
  5. "description": "通过语音自动填写HIS系统表单,支持多页面配置",
  6. "permissions": [
  7. "activeTab",
  8. "storage"
  9. ],
  10. "host_permissions": [
  11. "http://localhost:*/*",
  12. "https://localhost:*/*",
  13. "http://127.0.0.1:*/*"
  14. ],
  15. "action": {
  16. "default_popup": "popup.html"
  17. },
  18. "content_scripts": [
  19. {
  20. "matches": ["<all_urls>"],
  21. "js": ["content.js"],
  22. "css": ["styles.css"],
  23. "run_at": "document_idle"
  24. }
  25. ]
  26. }