Dogetizer

Dogetizer

so doge. many page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dogetizer",
  "version": "0.0.0.1",
  "manifest_version": 2,
  "description": "so doge. many page.",
  "homepage_url": "http://drewworthey.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "js/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "js/lexer/lexer.js",
        "js/lexer/lexicon.js",
        "js/lexer/POSTagger.js",
        "src/inject/inject.js"
      ]
    }
  ]
}