Stop Animations

Stops distracting animations.

Stop Animations란 무엇입니까?

Stop Animations은(는) https://www.craigfrancis.co.uk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stops distracting animations."입니다.

확장 프로그램 스크린샷

screenshot

Stop Animations 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    }
}