Stop Animations

Stops distracting animations.

Stop Animations là gì?

Stop Animations là một tiện ích mở rộng Chrome được phát triển bởi https://www.craigfrancis.co.uk, và tính năng chính của nó là "Stops distracting animations.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Stop Animations

Tải xuống các tệp mở rộng Stop Animations dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Stop Animations Stop Animations
ID gemmknjnneiojfjelmgappppbaneikda
URL Chính Thức https://chromewebstore.google.com/detail/stop-animations/gemmknjnneiojfjelmgappppbaneikda
Mô tả Stops distracting animations.
Kích Thước Tệp 382 KB
Số Lần Cài Đặt 8,376
Phiên Bản Hiện Tại 2.00
Cập Nhật Lần Cuối 2023-01-03
Ngày Phát Hành 2018-10-25
Đánh Giá 3.18/5 Tổng số 98 Đánh Giá
Nhà Phát Triển https://www.craigfrancis.co.uk
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/craigfrancis/stop-animations
URL Trang Trợ Giúp https://github.com/craigfrancis/stop-animations/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}