Litchee

Litchee

Litchee

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Litchee",
  "version": "4.4.5",
  "description": "Litchee",
  "icons": {
    "128": "icon_128_enable.png"
  },
  "browser_action": {
    "default_icon": {
      "32": "icon_128_disable.png"
    },
    "default_popup": "browser_action/index.html"
  },
  "background": {
    "page": "background/index.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content_scripts/app.js"
      ],
      "css": [
        "content_scripts/app.css"
      ],
      "matches": [
        "https://github.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options/index.html",
  "permissions": [
    "storage",
    "cookies",
    "notifications",
    "https://litchee.kayac.com/*"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}