Betteridgerator

Betteridgerator

Betteridge's Law of Headlines states that if a headline ends in a question mark, the answer is no.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Betteridgerator",
  "version": "1.1.1",
  "manifest_version": 2,
  "description": "Betteridge's Law of Headlines states that if a headline ends in a question mark, the answer is no.",
  "homepage_url": "http://everythingisfilm.com",
  "author": "Michael Morgenstern",
  "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": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "src/inject/inject.js"
      ],
      "all_frames": true
    }
  ]
}