Simple Image Rotator

(extremely) basic extension to rotate images in-place

Co to jest Simple Image Rotator?

Simple Image Rotator to rozszerzenie Chrome opracowane przez major, a jego główną funkcją jest „(extremely) basic extension to rotate images in-place”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Simple Image Rotator

Pobierz pliki rozszerzeń Simple Image Rotator 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

                        INCREDIBLY simple app to (hopefully) rotate images in-place. Simply right-click on an image, and choose desired orientation in the menu. Doesn't always work but is dumb and (just about) functional.

Just applies CSS `-webkit-transform: rotate(Xdeg)` where x is 0, 90, 180, or 270. Does not attempt to resize or re-centre or any other smarts                    

Podstawowe informacje o rozszerzeniu

Nazwa Simple Image Rotator Simple Image Rotator
ID celbdinhikbidipcbkmphghkoibafbik
Oficjalny URL https://chromewebstore.google.com/detail/simple-image-rotator/celbdinhikbidipcbkmphghkoibafbik
Opis (extremely) basic extension to rotate images in-place
Rozmiar pliku 3.82 KB
Liczba instalacji 3,616
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2022-08-03
Data Publikacji 2020-02-26
Ocena 2.50/5 Łącznie 14 Oceny
Deweloper major
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/majorsimon/chrome-simple-image-rotator
Adres URL Strony Pomocy https://github.com/majorsimon/chrome-simple-image-rotator
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Image Rotator",
    "description": "(extremely) basic extension to rotate images in-place",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "contextMenus"
    ]
}