Togglific

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

Qu'est-ce que Togglific ?

Togglific est une extension Chrome développée par svinkle, et sa fonction principale est "Do you find web animations distracting? Togglific provides a distraction-free web experience!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Togglific

Téléchargez les fichiers d'extension Togglific au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Togglific Togglific
ID nonnndpheabjkjjnjondfcfgcmhfbckb
URL Officiel https://chromewebstore.google.com/detail/togglific/nonnndpheabjkjjnjondfcfgcmhfbckb
Description Do you find web animations distracting? Togglific provides a distraction-free web experience!
Taille du Fichier 18.15 KB
Nombre d'Installations 48
Version Actuelle 0.16.0
Dernière Mise à Jour 2020-01-06
Date de Publication 2020-01-06
Évaluation 4.00/5 Total 3 Évaluations
Développeur svinkle
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://svinkle.github.io/togglific/
URL de la Page d'Aide https://github.com/svinkle/togglific/blob/master/README.md
Langues Prises en Charge 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"
            }
        }
    }
}