Behind the Paywall

Behind the Paywall

Tired of paywalls? Let a machine dream up the articles you can't see.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Behind the Paywall",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "Tired of paywalls? Let a machine dream up the articles you can't see.",
  "icons": {
    "16": "icons/glitch_16.png",
    "48": "icons/glitch_48.png",
    "128": "icons/glitch_128.png",
    "500": "icons/glitch_500.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Behind the Paywall"
  },
  "permissions": [
    "*://*.nytimes.com/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.nytimes.com/*"
      ],
      "css": [
        "inject-style.css"
      ],
      "js": [
        "hosted-model.js",
        "inject.js"
      ]
    }
  ]
}