PhotoShow

PhotoShow

View high-definition images by hovering mouse over thumbnails, for all your favorite websites and you.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDesc__",
  "version": "4.33.0",
  "version_name": "4.33.0",
  "author": "Vincent W.",
  "default_locale": "en",
  "minimum_chrome_version": "69",
  "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__"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}