Prepd Fast Catch

Prepd Fast Catch

Prepd Chrome extension for catching articles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Prepd Fast Catch",
  "version": "1.0.34",
  "description": "Prepd Chrome extension for catching articles",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Prepd Fast Catch"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "img/png/fast-catch-icon-16.png",
    "48": "img/png/fast-catch-icon-48.png",
    "128": "img/png/fast-catch-icon-128.png"
  },
  "web_accessible_resources": [
    "index.html"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}