Vampetase

Vampetase

Chrome extension to override all images in a page by Vampeta.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Vampetase",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Chrome extension to override all images in a page by Vampeta.",
  "homepage_url": "https://github.com/famoraes/vampetase",
  "author": "Fabiano Moraes",
  "short_name": "Vampetase",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_icon": "icons/icon19.png"
  },
  "permissions": [
    "contentSettings"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "src/inject/vampetase.js"
      ]
    }
  ]
}