PhotoShow

PhotoShow

Enlarge images on page by simply hovering your mouse on them, supporting Amazon, Facebook, Google, Instagram, Tumblr, Twitter, Wiki, YouTube and many other websites of your daily use. You may also rotate or download them with hotkeys.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_specific_settings": {
    "gecko": {
      "id": "{c23d8eea-4e71-4573-a245-4c97f8e1a1e0}",
      "strict_min_version": "62.0"
    }
  },
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDesc__",
  "version": "4.35.0",
  "version_name": "4.35.0",
  "author": "Vincent W.",
  "default_locale": "en",
  "icons": {
    "16": "resources/icon16.png",
    "24": "resources/icon24.png",
    "32": "resources/icon32.png",
    "36": "resources/icon36.png",
    "48": "resources/icon48.png",
    "64": "resources/icon64.png",
    "128": "resources/icon128.png"
  },
  "background": {
    "scripts": [
      "jquery-3.6.0.min.js",
      "background.js"
    ]
  },
  "devtools_page": "devtools/devtools.html",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs",
    "downloads",
    "contextMenus",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "browser_action": {
    "default_icon": {
      "16": "resources/icon16.png",
      "32": "resources/icon32.png"
    },
    "default_title": "__MSG_extensionName__",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "content/content.css"
      ],
      "js": [
        "jquery-3.6.0.min.js",
        "content/content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "frameContent/frameContent.css"
      ],
      "js": [
        "jquery-3.6.0.min.js",
        "frameContent/frameContent.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "resources/photoShowIcons.woff2",
    "resources/photoShowIcons.woff"
  ],
  "commands": {
    "togglePhotoShow": {
      "suggested_key": {
        "default": "Alt+Shift+P"
      },
      "description": "__MSG_extensionKeyboardShortcutDesc_toggle__"
    }
  }
}