Image Rotate Context

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

Что такое Image Rotate Context?

Image Rotate Context - это расширение Chrome, разработанное robert, и его основная функция - "Allows you to rotate an image with the right click context menu".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Image Rotate Context

Скачайте файлы расширений Image Rotate Context в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Image Rotate Context Image Rotate Context
ID mbfblhpconbgpgmphhlonlcbnmebdeme
Официальный URL https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme
Описание Allows you to rotate an image with the right click context menu
Размер файла 3.91 KB
Количество установок 20,000
Текущая Версия 1.0.0
Последнее Обновление 2018-12-01
Дата публикации 2018-11-27
Рейтинг 3.03/5 Всего 38 оценок
Разработчик robert
Тип оплаты free
Поддерживаемые языки 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
        }
    ]
}