Stop Animations

Stops distracting animations.

Was ist Stop Animations?

Stop Animations ist eine Chrome-Erweiterung, die von https://www.craigfrancis.co.uk entwickelt wurde, und ihr Hauptmerkmal ist "Stops distracting animations.".

Erweiterungsscreenshots

screenshot

Stop Animations-Erweiterungs-CRX-Datei herunterladen

Laden Sie Stop Animations-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Stop Animations Stop Animations
ID gemmknjnneiojfjelmgappppbaneikda
Offizielle URL https://chromewebstore.google.com/detail/stop-animations/gemmknjnneiojfjelmgappppbaneikda
Beschreibung Stops distracting animations.
Dateigröße 382 KB
Installationsanzahl 8,376
Aktuelle Version 2.00
Letztes Update 2023-01-03
Veröffentlichungsdatum 2018-10-25
Bewertung 3.18/5 Insgesamt 98 Bewertungen
Entwickler https://www.craigfrancis.co.uk
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/craigfrancis/stop-animations
Hilfeseite URL https://github.com/craigfrancis/stop-animations/issues
Unterstützte Sprachen 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"
        }
    }
}