Furaffinity img resize

Furaffinity img resize

Two alternatives, 1: Auto resizeing images so they fit window properly 2: click for 3 different image size

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Furaffinity img resize",
  "version": "0.1",
  "manifest_version": 2,
  "description": "Two alternatives, 1: Auto resizeing images so they fit window properly 2: click for 3 different image size",
  "icons": {
    "16": "img/fura16red.png",
    "128": "img/fura128.png"
  },
  "browser_action": {},
  "background": {
    "scripts": [
      "js/resize-img-background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.furaffinity.net/view/*"
      ],
      "js": [
        "js/jquery-2.2.1.min.js",
        "js/resize-img.js"
      ]
    }
  ],
  "minimum_chrome_version": "20",
  "permissions": [
    "windows",
    "tabs",
    "storage",
    "contextMenus"
  ]
}