Larger image finder

Larger image finder

Finds larger or original versions of images for 7800+ websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "extension/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_title": "__MSG_name__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "userscript.user.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "options_page": "options/options.html",
  "default_locale": "en",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "permissions": [
    "storage",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "contextMenus",
    "downloads",
    "<all_urls>"
  ],
  "optional_permissions": [
    "history",
    "clipboardWrite"
  ],
  "version": "0.8.1"
}