Image Rotate Context

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

¿Qué es Image Rotate Context?

Image Rotate Context es una extensión de Chrome desarrollada por robert, y su función principal es "Allows you to rotate an image with the right click context menu".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Image Rotate Context

Descarga archivos de extensión Image Rotate Context en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Image Rotate Context Image Rotate Context
ID mbfblhpconbgpgmphhlonlcbnmebdeme
URL Oficial https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme
Descripción Allows you to rotate an image with the right click context menu
Tamaño del Archivo 3.91 KB
Cantidad de Instalaciones 20,000
Versión Actual 1.0.0
Última Actualización 2018-12-01
Fecha de Publicación 2018-11-27
Calificación 3.03/5 Total de 38 Calificaciones
Desarrollador robert
Tipo de Pago free
Idiomas Soportados 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
        }
    ]
}