PhotoShow

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

O que é PhotoShow?

PhotoShow é uma extensão do Chrome desenvolvida por Vincent W., e sua principal característica é "View high-definition images by hovering mouse over thumbnails, for all your favorite websites and you.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão PhotoShow

Baixe arquivos de extensão PhotoShow no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        "PhotoShow" is a tool for browsing high-definition images by hovering mouse on image thumbnails, supporting over 140 websites/domains of your daily use (still in extending), such as Amazon, Facebook,  Google,  Wiki, YouTube, etc.

● HOTKEYS
Esc : Close image viewer
Shift + Ctrl + ← : Rotate counterclockwise
Shift + Ctrl + → : Rotate clockwise
↑ / → / ↓ / ← : Scroll up / right / down / left
PgUp / PgDn : Scroll up / down by image visible height
Home / End : Scroll up to the top / down to the bottom
M / L / A / P : Switch view mode
V: Toggle to the previously used view mode
Tab : Open high-definition image in new tab
S : Save high-definition image
C : Copy high-definition image address


● SETTINGS
WEBSITE TOGGLE: You may turn on/off PhotoShow on any supported website respectively.
ACTIVATION MODE: Use Shift/Ctrl/Alt key as a modifier key to trigger high-definition image preview when mouse hovering on image thumbnails.
VIEW MODE: Switch between different size of the viewer.
IMAGE SIZE DISPLAY: Set whether to display HD image size information in the viewer.
SHADOW DISPLAY: Set whether to display shadow between the viewer and the source thumbnail.

For more settings, please refer to the PhotoShow popup window.

All the settings will be saved and synced automatically by the browser among all your devices (as long as the account sync in your browser is enabled and the extension data sync is granted).


● IMAGE LOADING SPEED
PhotoShow will try to fetch as large an original image as it knows, so it may be considerably slow if your network condition is poor.


● PRIVACY & TERMS of USE
The author and all contributors of PhotoShow DO NOT collect any of your personal data and is not responsible for any loss, personal information leak, disputes and/or any consequences caused by illegal download, use of resources (including but not limited to images) of any websites you visit. In no event shall we be liable for any claims, penalties, loss, damage or expenses, howsoever arising, out of or in connection with your use of PhotoShow. Installing and using PhotoShow is deemed as your acceptance of the above terms.

PhotoShow only works in the local browser environment, all the permissions it asks when being installed are only for image preview and download. For version 3.0 and later, the 'Read and change all your data on the websites you visit' permission is asked so that you will no longer be disturbed by permission alert when PhotoShow updates to support more websites.

We reserve the right to change this Privacy Policy at any time without notifying you respectively. Any amended Privacy Policy will be posted on relevant websites. This Privacy Policy was last updated on January 24th, 2020 and replaces any other versions previously applicable from this date.


● FEEDBACK
Should you have any feedback or need more websites to be fitted, please do not hesitate to contact the author via emails or Github. If you enjoy using PhotoShow, it would be appreciated if you could introduce it to your friends via the social media listed on the popup window. Thank you.                    

Informações Básicas da Extensão

Nome PhotoShow PhotoShow
ID mgpdnhlllbpncjpgokgfogidhoegebod
URL Oficial https://chromewebstore.google.com/detail/photoshow/mgpdnhlllbpncjpgokgfogidhoegebod
Descrição View high-definition images by hovering mouse over thumbnails, for all your favorite websites and you.
Tamanho do Arquivo 114 KB
Contagem de Instalações 70,000
Versão Atual 4.30.0
Última Atualização 2023-11-10
Data de Publicação 2020-05-24
Classificação 4.51/5 Total de 220 Avaliações
Desenvolvedor Vincent W.
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Mr-VincentW/PhotoShow
URL da Página de Ajuda https://github.com/Mr-VincentW/PhotoShow/issues
Idiomas Suportados en,en-GB,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDesc__",
    "version": "4.30.0",
    "version_name": "4.30.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__"
        }
    }
}