Disable Scroll Jacking

Disables annoying scroll hijacking.

Disable Scroll Jacking là gì?

Disable Scroll Jacking là một tiện ích mở rộng Chrome được phát triển bởi https://joshbalfour.github.io/disable-scroll-jacking, và tính năng chính của nó là "Disables annoying scroll hijacking.".

Ả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 Scroll Jacking

Tải xuống các tệp mở rộng Disable Scroll Jacking 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

                        Sick of websites hijacking your scrolling?

I was, so I made this Chrome extension to take back control of the scroll.

Make scrolling bearable again by disabling scroll jacking across the web.


Find an issue? Let me know and I'll fix it: https://gitreports.com/issue/joshbalfour/[email protected]

Privacy policy: https://joshbalfour.github.io/disable-scroll-jacking/privacy.html                    

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

Tên Disable Scroll Jacking Disable Scroll Jacking
ID ehpdicggenhgapiikfpnmppdonadlnmp
URL Chính Thức https://chromewebstore.google.com/detail/disable-scroll-jacking/ehpdicggenhgapiikfpnmppdonadlnmp
Mô tả Disables annoying scroll hijacking.
Kích Thước Tệp 24.07 KB
Số Lần Cài Đặt 913
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2017-12-12
Ngày Phát Hành 2017-12-03
Đánh Giá 2.45/5 Tổng số 20 Đánh Giá
Nhà Phát Triển https://joshbalfour.github.io/disable-scroll-jacking
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://joshbalfour.github.io/disable-scroll-jacking/privacy.html
URL Trang Trợ Giúp https://gitreports.com/issue/joshbalfour/[email protected]
URL Trang Chính Sách Bảo Mật https://joshbalfour.github.io/disable-scroll-jacking/privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disable Scroll Jacking",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Disables annoying scroll hijacking.",
    "homepage_url": "https:\/\/joshbalfour.github.io\/disable-scroll-jacking\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "options_ui": {
        "page": "src\/options\/index.html#op"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/injector.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "src\/options\/index.html#ba"
    },
    "web_accessible_resources": [
        "src\/inject\/injected.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}