Simple Image Rotator

(extremely) basic extension to rotate images in-place

Wat is Simple Image Rotator?

Simple Image Rotator is een Chrome-extensie ontwikkeld door major, en de belangrijkste functie is "(extremely) basic extension to rotate images in-place".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Simple Image Rotator

Download Simple Image Rotator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Simple Image Rotator Simple Image Rotator
ID celbdinhikbidipcbkmphghkoibafbik
Officiële URL https://chromewebstore.google.com/detail/simple-image-rotator/celbdinhikbidipcbkmphghkoibafbik
Beschrijving (extremely) basic extension to rotate images in-place
Bestandsgrootte 3.82 KB
Aantal Installaties 3,616
Huidige Versie 0.0.2
Laatst Bijgewerkt 2022-08-03
Publicatiedatum 2020-02-26
Beoordeling 2.50/5 Totaal 14 Beoordelingen
Ontwikkelaar major
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/majorsimon/chrome-simple-image-rotator
Help Pagina-URL https://github.com/majorsimon/chrome-simple-image-rotator
Ondersteunde Talen 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"
    ]
}