Stop Animations

Stops distracting animations.

Stop Animationsคืออะไร?

Stop Animations เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.craigfrancis.co.uk และคุณลักษณะหลักของมันคือ "Stops distracting animations."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stop Animations

ดาวน์โหลดไฟล์ส่วนขยาย Stop Animations ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    }
}