Togglific

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

Togglific क्या है?

Togglific svinkle द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Do you find web animations distracting? Togglific provides a distraction-free web experience!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Togglific एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
            }
        }
    }
}