Image Rotate Context

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

O que é Image Rotate Context?

Image Rotate Context é uma extensão do Chrome desenvolvida por robert, e sua principal característica é "Allows you to rotate an image with the right click context menu".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Image Rotate Context

Baixe arquivos de extensão Image Rotate Context no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Image Rotate Context Image Rotate Context
ID mbfblhpconbgpgmphhlonlcbnmebdeme
URL Oficial https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme
Descrição Allows you to rotate an image with the right click context menu
Tamanho do Arquivo 3.91 KB
Contagem de Instalações 20,000
Versão Atual 1.0.0
Última Atualização 2018-12-01
Data de Publicação 2018-11-27
Classificação 3.03/5 Total de 38 Avaliações
Desenvolvedor robert
Tipo de Pagamento free
Idiomas Suportados 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
        }
    ]
}