Simple Image Rotator

(extremely) basic extension to rotate images in-place

Was ist Simple Image Rotator?

Simple Image Rotator ist eine Chrome-Erweiterung, die von major entwickelt wurde, und ihr Hauptmerkmal ist "(extremely) basic extension to rotate images in-place".

Erweiterungsscreenshots

screenshot

Simple Image Rotator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Simple Image Rotator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Simple Image Rotator Simple Image Rotator
ID celbdinhikbidipcbkmphghkoibafbik
Offizielle URL https://chromewebstore.google.com/detail/simple-image-rotator/celbdinhikbidipcbkmphghkoibafbik
Beschreibung (extremely) basic extension to rotate images in-place
Dateigröße 3.82 KB
Installationsanzahl 3,616
Aktuelle Version 0.0.2
Letztes Update 2022-08-03
Veröffentlichungsdatum 2020-02-26
Bewertung 2.50/5 Insgesamt 14 Bewertungen
Entwickler major
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/majorsimon/chrome-simple-image-rotator
Hilfeseite URL https://github.com/majorsimon/chrome-simple-image-rotator
Unterstützte Sprachen 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"
    ]
}