Disable Scrolling

This extension allows you to disable scrolling on your page.

Disable Scrolling là gì?

Disable Scrolling là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension allows you to disable scrolling on your page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Disable Scrolling

Tải xuống các tệp mở rộng Disable Scrolling dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
URL Chính Thức https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
Mô tả This extension allows you to disable scrolling on your page.
Kích Thước Tệp 190 KB
Số Lần Cài Đặt 1,077
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-06-13
Ngày Phát Hành 2020-06-13
Đánh Giá 3.20/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ysun62/Disable-Scrolling-Extension
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}