Image Rotate Context

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

Hvad er Image Rotate Context?

Image Rotate Context er en Chrome-udvidelse udviklet af robert, og dens hovedfunktion er "Allows you to rotate an image with the right click context menu".

Udvidelsesskærmbilleder

screenshot

Download Image Rotate Context-udvidelses-CRX-fil

Download Image Rotate Context-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Image Rotate Context Image Rotate Context
ID mbfblhpconbgpgmphhlonlcbnmebdeme
Officiel URL https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme
Beskrivelse Allows you to rotate an image with the right click context menu
Filstørrelse 3.91 KB
Antal Installationer 20,000
Nuværende Version 1.0.0
Senest Opdateret 2018-12-01
Udgivelsesdato 2018-11-27
Bedømmelse 3.03/5 Samlet 38 Bedømmelser
Udvikler robert
Betalingsmetode free
Understøttede Sprog 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
        }
    ]
}