Image Viewer

More than the default image viewer

O que é Image Viewer?

Image Viewer é uma extensão do Chrome desenvolvida por a155268747, e sua principal característica é "More than the default image viewer".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Image Viewer

Baixe arquivos de extensão Image Viewer 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

                        Image Viewer is a Chrome extension for improve your images viewing experiences.

Features
1. Collect and view all images on the page.
2. Support video poster and images in iframes.
3. Auto load most lazy loaded images.
4. Redirect middle click to original image
5. Go to original image on the page.
6. Fit, zoom, rotate and mirror the image.
7. Hotkey for image reverse search.
8. Download collected images.
9. Easy to use.
10. And more...

The UI is intuitive, you can use mouse or keyboard to control it.
Full manual is available in the repository of this project.
https://github.com/hospotho/Image-Viewer

You can buy me a coffee on https://ko-fi.com/tonymilktea                    

Informações Básicas da Extensão

Nome Image Viewer Image Viewer
ID ghdcoodfcolpdebbdhbgkbodbjololfl
URL Oficial https://chromewebstore.google.com/detail/image-viewer/ghdcoodfcolpdebbdhbgkbodbjololfl
Descrição More than the default image viewer
Tamanho do Arquivo 95.23 KB
Contagem de Instalações 743
Versão Atual 1.33
Última Atualização 2024-01-17
Data de Publicação 2022-10-31
Classificação 3.50/5 Total de 2 Avaliações
Desenvolvedor a155268747
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/hospotho/Image-Viewer
Idiomas Suportados en,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.33",
    "default_locale": "en",
    "manifest_version": 3,
    "icons": {
        "16": "\/icon\/icon16.png",
        "128": "\/icon\/icon128.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "scripting",
        "webNavigation"
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        "file:\/\/\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": {
            "16": "\/icon\/icon16.png",
            "128": "\/icon\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "\/scripts\/activate-url.js"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "commands": {
        "open-image-viewer": {
            "suggested_key": {
                "default": "Alt+1"
            },
            "description": "__MSG_view_images_in_image_viewer__"
        },
        "open-image-viewer-without-size-filter": {
            "suggested_key": {
                "default": "Alt+Shift+1"
            },
            "description": "__MSG_view_all_images_in_image_viewer__"
        }
    }
}