| 1234567891011121314151617181920212223242526 |
- {
- "manifest_version": 3,
- "name": "医生语音助手",
- "version": "2.0.0",
- "description": "通过语音自动填写HIS系统表单,支持多页面配置",
- "permissions": [
- "activeTab",
- "storage"
- ],
- "host_permissions": [
- "http://localhost:*/*",
- "https://localhost:*/*",
- "http://127.0.0.1:*/*"
- ],
- "action": {
- "default_popup": "popup.html"
- },
- "content_scripts": [
- {
- "matches": ["<all_urls>"],
- "js": ["content.js"],
- "css": ["styles.css"],
- "run_at": "document_idle"
- }
- ]
- }
|