PhotoShow

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

Co je PhotoShow?

PhotoShow je rozšíření Chrome vyvinuté Vincent W., a jeho hlavní funkcí je „View high-definition images by hovering mouse over thumbnails, for all your favorite websites and you.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření PhotoShow

Stáhněte si soubory rozšíření PhotoShow ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        "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.                    

Základní Informace o Rozšíření

Název PhotoShow PhotoShow
ID mgpdnhlllbpncjpgokgfogidhoegebod
Oficiální URL https://chromewebstore.google.com/detail/photoshow/mgpdnhlllbpncjpgokgfogidhoegebod
Popis View high-definition images by hovering mouse over thumbnails, for all your favorite websites and you.
Velikost souboru 114 KB
Počet instalací 70,000
Aktuální Verze 4.30.0
Poslední Aktualizace 2023-11-10
Datum Vydání 2020-05-24
Hodnocení 4.51/5 Celkem 220 Hodnocení
Vývojář Vincent W.
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Mr-VincentW/PhotoShow
URL Stránky Nápovědy https://github.com/Mr-VincentW/PhotoShow/issues
Podporované Jazyky 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__"
        }
    }
}