Image Rotate Context

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

Qu'est-ce que Image Rotate Context ?

Image Rotate Context est une extension Chrome développée par robert, et sa fonction principale est "Allows you to rotate an image with the right click context menu".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Image Rotate Context

Téléchargez les fichiers d'extension Image Rotate Context au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Image Rotate Context Image Rotate Context
ID mbfblhpconbgpgmphhlonlcbnmebdeme
URL Officiel https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme
Description Allows you to rotate an image with the right click context menu
Taille du Fichier 3.91 KB
Nombre d'Installations 20,000
Version Actuelle 1.0.0
Dernière Mise à Jour 2018-12-01
Date de Publication 2018-11-27
Évaluation 3.03/5 Total 38 Évaluations
Développeur robert
Type de Paiement free
Langues Prises en Charge 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
        }
    ]
}