Porgify

Porgify

Replaces all images on all pages with images of Porg.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "js": [
        "porgify/porgify.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "background": {
    "scripts": [
      "porgify/bg.js"
    ]
  },
  "description": "__MSG_appDesc__",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "__MSG_appName__",
  "version": "2.0.0",
  "default_locale": "en",
  "icons": {
    "16": "porgify/logo16.png",
    "128": "porgify/logo128.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "options_ui": {
    "page": "porgify/options/options.html",
    "chrome_style": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}