Simple Image Rotator

(extremely) basic extension to rotate images in-place

Что такое Simple Image Rotator?

Simple Image Rotator - это расширение Chrome, разработанное major, и его основная функция - "(extremely) basic extension to rotate images in-place".

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

screenshot

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

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

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

                        INCREDIBLY simple app to (hopefully) rotate images in-place. Simply right-click on an image, and choose desired orientation in the menu. Doesn't always work but is dumb and (just about) functional.

Just applies CSS `-webkit-transform: rotate(Xdeg)` where x is 0, 90, 180, or 270. Does not attempt to resize or re-centre or any other smarts                    

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

Название Simple Image Rotator Simple Image Rotator
ID celbdinhikbidipcbkmphghkoibafbik
Официальный URL https://chromewebstore.google.com/detail/simple-image-rotator/celbdinhikbidipcbkmphghkoibafbik
Описание (extremely) basic extension to rotate images in-place
Размер файла 3.82 KB
Количество установок 3,616
Текущая Версия 0.0.2
Последнее Обновление 2022-08-03
Дата публикации 2020-02-26
Рейтинг 2.50/5 Всего 14 оценок
Разработчик major
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/majorsimon/chrome-simple-image-rotator
URL страницы помощи https://github.com/majorsimon/chrome-simple-image-rotator
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Image Rotator",
    "description": "(extremely) basic extension to rotate images in-place",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "contextMenus"
    ]
}