Remove Blink

Removes cursor blink in Google Docs.

Remove Blinkคืออะไร?

Remove Blink เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jeremiah Baclig และคุณลักษณะหลักของมันคือ "Removes cursor blink in Google Docs."

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

screenshot

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

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

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

                        This extension removes the cursor blink within Google Docs. The cursor blink speed is set to 0, allow for the text caret to remain, but be static. 

UPDATE 1.0.1:
- Websites using Monaco cursor are supported (ie. Leetcode)

If needed outside of Google Docs and on a Windows machine, it is recommended to use the default "Change cursor blink rate" feature in Windows and adjust the value to None. This will not work on all text boxes on all webpages in Chrome but this extension will be revisited in the future to address this. Additional information can be found at the link below:

https://github.com/jeremiahbaclig/Cursor-Blink                    

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

ชื่อ Remove Blink Remove Blink
ID fnaaokkdhakddpnkbmghogjelkakgpkg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/remove-blink/fnaaokkdhakddpnkbmghogjelkakgpkg
คำอธิบาย Removes cursor blink in Google Docs.
ขนาดไฟล์ 11.92 KB
จำนวนการติดตั้ง 481
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2023-11-10
วันที่เผยแพร่ 2021-01-05
คะแนน 5.00/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Jeremiah Baclig
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/jeremiahbaclig/Cursor-Blink
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Blink",
    "description": "Removes cursor blink in Google Docs.",
    "version": "1.0.1",
    "manifest_version": 3,
    "host_permissions": [
        "https:\/\/docs.google.com\/*"
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "action": {
        "default_icon": {
            "16": "16.png",
            "48": "48.png",
            "128": "128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}