Image Rotate Context

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

Co to jest Image Rotate Context?

Image Rotate Context to rozszerzenie Chrome opracowane przez robert, a jego główną funkcją jest „Allows you to rotate an image with the right click context menu”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Image Rotate Context

Pobierz pliki rozszerzeń Image Rotate Context w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Image Rotate Context Image Rotate Context
ID mbfblhpconbgpgmphhlonlcbnmebdeme
Oficjalny URL https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme
Opis Allows you to rotate an image with the right click context menu
Rozmiar pliku 3.91 KB
Liczba instalacji 20,000
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2018-12-01
Data Publikacji 2018-11-27
Ocena 3.03/5 Łącznie 38 Oceny
Deweloper robert
Typ Płatności free
Obsługiwane Języki 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
        }
    ]
}