Image Handling Shortcuts

Clicking to save the image? Clicking to waste time! This extension will provide you with shortcuts to deal with images.

Co to jest Image Handling Shortcuts?

Image Handling Shortcuts to rozszerzenie Chrome opracowane przez zeyadshapan2004, a jego główną funkcją jest „Clicking to save the image? Clicking to waste time! This extension will provide you with shortcuts to deal with images.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Image Handling Shortcuts

Pobierz pliki rozszerzeń Image Handling Shortcuts w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Got tired of clicking to save an image? clicking to copy image address? clicking to do other stuff with images? Got tired of wasting time on that boring stuff!

This extension will provide your browser with useful shortcuts to be able to deal with images much faster.

How to use it? simply put your cursor directly on the image, then press one of the shortcuts listed below.

# Shortcuts

- Save Image as: CTRL + SHIFT + S
- Copy Image Address: CTRL + SHIFT + C

If you have any ideas to improve our product please open an issue on the Github page https://github.com/zeyad-shaban/image-handling-shortcuts/issues

- Paypal Donations: https://www.paypal.com/paypalme/codewithzeyad?locale.x=en_US
- Youtube Channel: https://www.youtube.com/channel/UCFjcc0rq2guK6kJ4va49zgA
- Twitter: https://twitter.com/zeyadshaban0                    

Podstawowe informacje o rozszerzeniu

Nazwa Image Handling Shortcuts Image Handling Shortcuts
ID dhnacegooljnejkdlpepjgklfmphpikg
Oficjalny URL https://chromewebstore.google.com/detail/image-handling-shortcuts/dhnacegooljnejkdlpepjgklfmphpikg
Opis Clicking to save the image? Clicking to waste time! This extension will provide you with shortcuts to deal with images.
Rozmiar pliku 15.93 KB
Liczba instalacji 998
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2021-07-02
Data Publikacji 2021-05-18
Ocena 4.20/5 Łącznie 5 Oceny
Deweloper zeyadshapan2004
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/zeyad-shaban/image-handling-shortcuts/issues
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Handling Shortcuts",
    "description": "Clicking to save the image? Clicking to waste time! This extension will provide you with shortcuts to deal with images.",
    "version": "1.1",
    "manifest_version": 3,
    "action": {
        "default_popup": ".\/popup.html"
    },
    "author": "Zeyad Shaban",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/index.js"
            ]
        }
    ],
    "icons": {
        "32": ".\/icon_32.png",
        "128": ".\/icon_128.png"
    }
}