Togglific

Do you find web animations distracting? Togglific provides a distraction-free web experience!

Togglific là gì?

Togglific là một tiện ích mở rộng Chrome được phát triển bởi svinkle, và tính năng chính của nó là "Do you find web animations distracting? Togglific provides a distraction-free web experience!".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Togglific 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

                        Do you find web animations distracting? Have difficulty focusing when reading on the web? Wish you could pause background videos? Togglific provides a distraction-free web experience!

Togglific will pause the following animations on click:

• CSS animations (animation and transform properties)
• JavaScript animations (requestAnimationFrame method)
• SVG animations
• jQuery animations
• Animated GIF and WEBP images
• HTML video elements
• Targets same-domain iframe elements for all of the above

Note: depending on how the underlying website was coded, Togglific could cause content to be difficult to read. Encourage web designers and developers to code in a way which supports no-animation states!                    

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

Tên Togglific Togglific
ID nonnndpheabjkjjnjondfcfgcmhfbckb
URL Chính Thức https://chromewebstore.google.com/detail/togglific/nonnndpheabjkjjnjondfcfgcmhfbckb
Mô tả Do you find web animations distracting? Togglific provides a distraction-free web experience!
Kích Thước Tệp 18.15 KB
Số Lần Cài Đặt 48
Phiên Bản Hiện Tại 0.16.0
Cập Nhật Lần Cuối 2020-01-06
Ngày Phát Hành 2020-01-06
Đánh Giá 4.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển svinkle
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://svinkle.github.io/togglific/
URL Trang Trợ Giúp https://github.com/svinkle/togglific/blob/master/README.md
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Togglific",
    "author": "Scott Vinkle ",
    "version": "0.16.0",
    "description": "Do you find web animations distracting? Togglific provides a distraction-free web experience!",
    "homepage_url": "https:\/\/togglific.io",
    "icons": {
        "16": "icons\/resume16.png",
        "24": "icons\/resume24.png",
        "32": "icons\/resume32.png",
        "48": "icons\/resume48.png",
        "96": "icons\/resume96.png",
        "128": "icons\/resume128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/resume16.png",
            "24": "icons\/resume24.png",
            "32": "icons\/resume32.png",
            "48": "icons\/resume48.png",
            "96": "icons\/resume96.png",
            "128": "icons\/resume128.png"
        },
        "default_title": "Togglific"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "togglific.js"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            }
        }
    }
}