Stop Animations

Stops distracting animations.

Что такое Stop Animations?

Stop Animations - это расширение Chrome, разработанное https://www.craigfrancis.co.uk, и его основная функция - "Stops distracting animations.".

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

screenshot

Скачать файл CRX расширения Stop Animations

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

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

                        Great at stopping animations from distracting you while reading.

This stops everything from GIF, Flash, and even JavaScript.

Just press the escape key [esc]... and press again to restore.

To change the shortcut, go to chrome://extensions/shortcuts

Works by taking a screen shot and layering it over the page... unfortunately it can't do a full screen shot (see crbug report 45209), so it re-updates when you scroll or resize the window.

To raise bug reports, or see the source code, please go to:

https://github.com/craigfrancis/stop-animations                    

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

Название Stop Animations Stop Animations
ID gemmknjnneiojfjelmgappppbaneikda
Официальный URL https://chromewebstore.google.com/detail/stop-animations/gemmknjnneiojfjelmgappppbaneikda
Описание Stops distracting animations.
Размер файла 382 KB
Количество установок 8,376
Текущая Версия 2.00
Последнее Обновление 2023-01-03
Дата публикации 2018-10-25
Рейтинг 3.18/5 Всего 98 оценок
Разработчик https://www.craigfrancis.co.uk
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/craigfrancis/stop-animations
URL страницы помощи https://github.com/craigfrancis/stop-animations/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stop Animations",
    "short_name": "Stop Anim",
    "version": "2.00",
    "manifest_version": 3,
    "description": "Stops distracting animations.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "screenshot.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'none'; base-uri 'none'; form-action 'none'; style-src 'self'; script-src 'self'; frame-ancestors 'none'; block-all-mixed-content; trusted-types 'none'; require-trusted-types-for 'script';"
    },
    "commands": {
        "stop-animations": {
            "description": "Stop Animations"
        }
    }
}