Simple Image Rotator

(extremely) basic extension to rotate images in-place

Apa itu Simple Image Rotator?

Simple Image Rotator adalah ekstensi Chrome yang dikembangkan oleh major, dan fitur utamanya adalah "(extremely) basic extension to rotate images in-place".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Simple Image Rotator

Unduh file ekstensi Simple Image Rotator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Simple Image Rotator Simple Image Rotator
ID celbdinhikbidipcbkmphghkoibafbik
URL Resmi https://chromewebstore.google.com/detail/simple-image-rotator/celbdinhikbidipcbkmphghkoibafbik
Deskripsi (extremely) basic extension to rotate images in-place
Ukuran File 3.82 KB
Jumlah Instalasi 3,616
Versi Saat Ini 0.0.2
Terakhir Diperbarui 2022-08-03
Tanggal Publikasi 2020-02-26
Penilaian 2.50/5 Total 14 Penilaian
Pengembang major
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/majorsimon/chrome-simple-image-rotator
URL Halaman Bantuan https://github.com/majorsimon/chrome-simple-image-rotator
Bahasa yang Didukung 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"
    ]
}