| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- {
- "name": "FeHelper(前端助手)-Dev",
- "short_name": "FeHelper",
- "version": "2025.5.2014",
- "manifest_version": 3,
- "description": "JSON自动格式化、手动格式化,支持排序、解码、下载等,更多功能可在配置页按需安装!",
- "icons": {
- "16": "static/img/fe-16.png",
- "48": "static/img/fe-48.png",
- "128": "static/img/fe-128.png"
- },
- "action": {
- "default_icon": "static/img/fe-16.png",
- "default_title": "FeHelper(前端助手)",
- "default_popup": "popup/index.html"
- },
- "background": {
- "service_worker": "background/background.js",
- "type": "module"
- },
- "options_ui": {
- "page": "options/index.html",
- "open_in_tab": true
- },
- "permissions": [
- "tabs",
- "scripting",
- "contextMenus",
- "activeTab",
- "storage",
- "notifications",
- "unlimitedStorage"
- ],
- "host_permissions": [
- "http://*/*",
- "https://*/*",
- "file://*/*"
- ],
- "optional_permissions": [
- "downloads"
- ],
- "commands": {
- "_execute_action": {
- "suggested_key": {
- "default": "Alt+Shift+J"
- }
- }
- },
- "web_accessible_resources": [
- {
- "resources":[
- "static/img/fe-16.png",
- "static/img/fe-48.png",
- "static/img/loading.gif",
- "json-format/format-lib.js",
- "json-format/json-abc.js",
- "json-format/json-bigint.js",
- "json-format/json-decode.js",
- "json-format/json-worker.js",
- "static/vendor/jquery/jquery-3.3.1.min.js",
- "static/vendor/evalCore.min.js",
- "background/awesome.js",
- "background/tools.js",
- "code-beautify/beautify.js",
- "code-beautify/beautify-css.js"
- ],
- "matches": ["<all_urls>"]
- }
- ],
- "content_scripts": [
- {
- "matches": [
- "http://*/*",
- "https://*/*",
- "file://*/*"
- ],
- "exclude_globs": [
- "https://chrome.google.com/*"
- ],
- "js": [
- "static/vendor/jquery/jquery-3.3.1.min.js",
- "static/vendor/evalCore.min.js"
- ],
- "run_at": "document_start",
- "all_frames": true
- }
- ],
- "content_security_policy": {
- "extension_pages": "script-src 'self'; style-src 'self' 'unsafe-inline'; object-src 'self'"
- },
- "homepage_url": "https://www.fehelper.com"
- }
|