ebb

Chrome extension to mitigate on-screen movement.

ebbคืออะไร?

ebb เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Team Ebb และคุณลักษณะหลักของมันคือ "Chrome extension to mitigate on-screen movement."

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

screenshot
screenshot
screenshot

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

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

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

                        Have you ever experienced increased eye strain, headaches, distractibility, and or frustration after surfing the web? If so, give Ebb a try! 

Ebb is a free Chrome extension that reduces the appearance of moving site components, like GIFs and CSS animations, which can be a common trigger for people with various neurological and sensory conditions, like ADHD, photophobia, chronic fatigue, migraines. Thus, by minimizing on-screen movements, Ebb can help people like you have safer and less painful online experiences, making web browsing more inclusive and accessible.

Ebb is designed with accessibility in-mind with elements like a simplistic user experience, a dark and soothing color scheme, keyboard navigation and focus, and OS-based shortcuts. We’re always working to make Ebb better, so we built a feedback tool right into the extension. 

So, do you want to browse more comfortably? Try surfing the web with Ebb!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ebb ebb
ID madmcmnfddadihndjcofieeeenbndlil
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ebb/madmcmnfddadihndjcofieeeenbndlil
คำอธิบาย Chrome extension to mitigate on-screen movement.
ขนาดไฟล์ 75.84 KB
จำนวนการติดตั้ง 42
เวอร์ชันปัจจุบัน 0.0.0.1
อัปเดตครั้งล่าสุด 2021-06-11
วันที่เผยแพร่ 2021-06-11
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Team Ebb
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ebb",
    "version": "0.0.0.1",
    "manifest_version": 3,
    "description": "Chrome extension to mitigate on-screen movement.",
    "icons": {
        "16": "icons\/ebb16x16.png",
        "32": "icons\/ebb32x32.png",
        "48": "icons\/ebb48x48.png",
        "128": "icons\/ebb128x128.png"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery.min.js",
                "content-scripts\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "MacCtrl+Shift+Y",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+J"
            },
            "description": "Opens popup.html"
        }
    }
}