Pocketlight

Pocketlight

Highlighter for pocket

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "version": "0.0.6",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "web_accessible_resources": [
    "images/*",
    "fonts/*"
  ],
  "content_security_policy": "script-src https://www.google-analytics.com https://cdn.heapanalytics.com https://heapanalytics.com 'self'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://getpocket.com/a/*"
      ],
      "css": [
        "styles/content.css"
      ],
      "js": [
        "scripts/heap.js",
        "scripts/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}