Disable Scroll Jacking

Disables annoying scroll hijacking.

Disable Scroll Jackingคืออะไร?

Disable Scroll Jacking เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://joshbalfour.github.io/disable-scroll-jacking และคุณลักษณะหลักของมันคือ "Disables annoying scroll hijacking."

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

screenshot

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

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

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

                        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                    

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

ชื่อ Disable Scroll Jacking Disable Scroll Jacking
ID ehpdicggenhgapiikfpnmppdonadlnmp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/disable-scroll-jacking/ehpdicggenhgapiikfpnmppdonadlnmp
คำอธิบาย Disables annoying scroll hijacking.
ขนาดไฟล์ 24.07 KB
จำนวนการติดตั้ง 913
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2017-12-12
วันที่เผยแพร่ 2017-12-03
คะแนน 2.45/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา https://joshbalfour.github.io/disable-scroll-jacking
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://joshbalfour.github.io/disable-scroll-jacking/privacy.html
URL หน้าช่วยเหลือ https://gitreports.com/issue/joshbalfour/[email protected]
URL หน้านโยบายความเป็นส่วนตัว https://joshbalfour.github.io/disable-scroll-jacking/privacy.html
ภาษาที่รองรับ 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'"
}