Togglific

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

什麼是Togglific?

Togglific是由svinkle開發的Chrome擴展程式,該擴展的主要功能是“Do you find web animations distracting? Togglific provides a distraction-free web experience!”。

擴展截圖

screenshot
screenshot

下載Togglific擴展crx文件

下載Togglific擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Togglific Togglific
ID nonnndpheabjkjjnjondfcfgcmhfbckb
官方網址 https://chromewebstore.google.com/detail/togglific/nonnndpheabjkjjnjondfcfgcmhfbckb
簡介 Do you find web animations distracting? Togglific provides a distraction-free web experience!
檔案大小 18.15 KB
安裝次數 48
目前版本 0.16.0
更新時間 2020-01-06
上架時間 2020-01-06
評分 4.00/5 共 3 次評分
開發者 svinkle
電子郵箱 [email protected]
付費類型 free
擴展官網 https://svinkle.github.io/togglific/
說明頁面URL https://github.com/svinkle/togglific/blob/master/README.md
支援的語言 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"
            }
        }
    }
}