Image Rotate Context

Allows you to rotate an image with the right click context menu

Apa itu Image Rotate Context?

Image Rotate Context adalah ekstensi Chrome yang dikembangkan oleh robert, dan fitur utamanya adalah "Allows you to rotate an image with the right click context menu".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Image Rotate Context

Unduh file ekstensi Image Rotate Context 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

                        Adds a "Rotate" menu option when right clicking images allowing you to rotate Right or Left                    

Informasi Dasar Ekstensi

Nama Image Rotate Context Image Rotate Context
ID mbfblhpconbgpgmphhlonlcbnmebdeme
URL Resmi https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme
Deskripsi Allows you to rotate an image with the right click context menu
Ukuran File 3.91 KB
Jumlah Instalasi 20,000
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2018-12-01
Tanggal Publikasi 2018-11-27
Penilaian 3.03/5 Total 38 Penilaian
Pengembang robert
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Rotate Context",
    "manifest_version": 2,
    "version": "1.0.0",
    "description": "Allows you to rotate an image with the right click context menu",
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "inpage.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true
        }
    ]
}