Disable Scrolling

This extension allows you to disable scrolling on your page.

Disable Scrollingคืออะไร?

Disable Scrolling เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension allows you to disable scrolling on your page."

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

screenshot

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

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

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

                        Ever tried searching for a word in the current viewport, but the Find Bar takes you to "random" sections of the page, making you lose track of the section you were just reading?

Try using this chrome extension to temporarily disable scrolling of the current page before you use Find, so that you can stay where you are while Find searches all the instances for you.

* Note: please refresh any pre-existing tabs after installation.                    

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

ชื่อ Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
คำอธิบาย This extension allows you to disable scrolling on your page.
ขนาดไฟล์ 190 KB
จำนวนการติดตั้ง 1,077
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-06-13
วันที่เผยแพร่ 2020-06-13
คะแนน 3.20/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ysun62/Disable-Scrolling-Extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Disable Scrolling",
    "description": "This extension allows you to disable scrolling on your page.",
    "version": "1.0.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "index.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ]
}