Disable Scroll Jacking

Disables annoying scroll hijacking.

Disable Scroll Jacking란 무엇입니까?

Disable Scroll Jacking은(는) https://joshbalfour.github.io/disable-scroll-jacking에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Disables annoying scroll hijacking."입니다.

확장 프로그램 스크린샷

screenshot

Disable Scroll Jacking 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}