| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "manifest_version": 3,
- "name": "脚本助手",
- "version": "2.0.0",
- "description": "脚本助手",
- "icons": {
- "16": "img/16.png",
- "48": "img/48.png",
- "128": "img/128.png"
- },
- "action": {
- "default_icon": "img/48.png",
- "default_title": "脚本助手",
- "default_popup": "popup.html"
- },
- "background": {
- "service_worker": "background.js"
- },
- "content_scripts": [
- {
- "matches": ["<all_urls>"],
- "js": ["insert.js", "content-script.js"],
- "all_frames": true,
- "run_at": "document_start"
- }
- ],
- "permissions": [
- "scripting",
- "storage",
- "activeTab",
- "webRequest",
- "notifications"
- ],
- "host_permissions": [
- "http://*/*",
- "https://*/*"
- ],
- "externally_connectable": {
- "matches": [
- "https://demos.run/*",
- "https://cunchu.site/*"
- ]
- },
- "homepage_url": "https://github.com/PUGE",
- "options_page": "options.html",
- "options_ui": {
- "page": "options.html",
- "open_in_tab": true
- }
- }
|