Simple Image Rotator

(extremely) basic extension to rotate images in-place

Cos'è Simple Image Rotator?

Simple Image Rotator è un'estensione di Chrome sviluppata da major, e la sua funzione principale è "(extremely) basic extension to rotate images in-place".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Simple Image Rotator

Scarica i file di estensione Simple Image Rotator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Simple Image Rotator Simple Image Rotator
ID celbdinhikbidipcbkmphghkoibafbik
URL Ufficiale https://chromewebstore.google.com/detail/simple-image-rotator/celbdinhikbidipcbkmphghkoibafbik
Descrizione (extremely) basic extension to rotate images in-place
Dimensione del File 3.82 KB
Conteggio Installazioni 3,616
Versione Corrente 0.0.2
Ultimo Aggiornamento 2022-08-03
Data di Pubblicazione 2020-02-26
Valutazione 2.50/5 Totale 14 Valutazioni
Sviluppatore major
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/majorsimon/chrome-simple-image-rotator
URL della Pagina di Aiuto https://github.com/majorsimon/chrome-simple-image-rotator
Lingue Supportate 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"
    ]
}