眺览 TillGlance

眺览 TillGlance

一目十行的阅读模式

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.14",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "zh_CN",
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "app.bundle.js"
      ],
      "css": []
    }
  ],
  "web_accessible_resources": [
    "*.css",
    "*.js",
    "*.html",
    "*.svg",
    "*.png",
    "*.otf",
    "*.woff2",
    "*.json"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+Comma",
        "mac": "Alt+Comma",
        "chromeos": "Alt+Comma",
        "linux": "Alt+Comma"
      }
    }
  }
}