Image Rotate Context

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

Wat is Image Rotate Context?

Image Rotate Context is een Chrome-extensie ontwikkeld door robert, en de belangrijkste functie is "Allows you to rotate an image with the right click context menu".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Image Rotate Context

Download Image Rotate Context-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Image Rotate Context Image Rotate Context
ID mbfblhpconbgpgmphhlonlcbnmebdeme
Officiële URL https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme
Beschrijving Allows you to rotate an image with the right click context menu
Bestandsgrootte 3.91 KB
Aantal Installaties 20,000
Huidige Versie 1.0.0
Laatst Bijgewerkt 2018-12-01
Publicatiedatum 2018-11-27
Beoordeling 3.03/5 Totaal 38 Beoordelingen
Ontwikkelaar robert
Betalingswijze free
Ondersteunde Talen 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
        }
    ]
}