Turn images upside down

Turn images upside down

Что такое Turn images upside down?

Turn images upside down - это расширение Chrome, разработанное lu1s, и его основная функция - "Turn images upside down".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Turn images upside down

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

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

                        This extension, when clicked, will turn every image upside down usign css rotate and a transition effect. When clicking again, it will turn them back to their original position.                    

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

Название Turn images upside down Turn images upside down
ID dkfmdnojipbgbfafjbiinbjjdbeclbin
Официальный URL https://chromewebstore.google.com/detail/turn-images-upside-down/dkfmdnojipbgbfafjbiinbjjdbeclbin
Описание Turn images upside down
Размер файла 27.05 KB
Количество установок 39
Текущая Версия 0.0.1
Последнее Обновление 2020-04-02
Дата публикации 2020-03-27
Рейтинг 5.00/5 Всего 1 оценок
Разработчик lu1s
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Turn images upside down",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Turn images upside down",
    "homepage_url": "http:\/\/luispulido.com",
    "icons": {
        "16": "favicon-16.png",
        "48": "favicon-48.png",
        "128": "favicon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Turn images upside down"
    },
    "permissions": [
        "activeTab"
    ]
}