Perspective

Perspective

Providing perspective for struggling Daily Mail readers

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Perspective",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Providing perspective for struggling Daily Mail readers",
  "homepage_url": "http://jeshua.co",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "permissions": [
    "*://www.dailymail.co.uk/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.dailymail.co.uk/*"
      ],
      "js": [
        "js/jquery/jquery.js",
        "src/inject/inject.js"
      ]
    }
  ]
}