Stop Animations

Stops distracting animations.

Stop Animationsとは何ですか?

Stop Animationsはhttps://www.craigfrancis.co.ukによって開発されたChromeの拡張機能で、その主な機能は「Stops distracting animations.」です。

拡張機能のスクリーンショット

screenshot

Stop Animations拡張機能のCRXファイルをダウンロード

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
Eメール [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"
        }
    }
}