Stop Animations

Stops distracting animations.

Stop Animations क्या है?

Stop Animations https://www.craigfrancis.co.uk द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Stops distracting animations."।

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

screenshot

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

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

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

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Stop Animations Stop Animations
ID gemmknjnneiojfjelmgappppbaneikda
आधिकारिक URL https://chromewebstore.google.com/detail/stop-animations/gemmknjnneiojfjelmgappppbaneikda
विवरण Stops distracting animations.
फ़ाइल का आकार 382 KB
स्थापना संख्या 8,376
वर्तमान संस्करण 2.00
अंतिम अपडेट 2023-01-03
प्रकाशन तिथि 2018-10-25
रेटिंग 3.18/5 कुल 98 रेटिंग्स
डेवलपर https://www.craigfrancis.co.uk
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/craigfrancis/stop-animations
सहायता पृष्ठ URL https://github.com/craigfrancis/stop-animations/issues
समर्थित भाषाएँ 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"
        }
    }
}