Disable Scroll Jacking

Disables annoying scroll hijacking.

Was ist Disable Scroll Jacking?

Disable Scroll Jacking ist eine Chrome-Erweiterung, die von https://joshbalfour.github.io/disable-scroll-jacking entwickelt wurde, und ihr Hauptmerkmal ist "Disables annoying scroll hijacking.".

Erweiterungsscreenshots

screenshot

Disable Scroll Jacking-Erweiterungs-CRX-Datei herunterladen

Laden Sie Disable Scroll Jacking-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Disable Scroll Jacking Disable Scroll Jacking
ID ehpdicggenhgapiikfpnmppdonadlnmp
Offizielle URL https://chromewebstore.google.com/detail/disable-scroll-jacking/ehpdicggenhgapiikfpnmppdonadlnmp
Beschreibung Disables annoying scroll hijacking.
Dateigröße 24.07 KB
Installationsanzahl 913
Aktuelle Version 0.0.3
Letztes Update 2017-12-12
Veröffentlichungsdatum 2017-12-03
Bewertung 2.45/5 Insgesamt 20 Bewertungen
Entwickler https://joshbalfour.github.io/disable-scroll-jacking
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://joshbalfour.github.io/disable-scroll-jacking/privacy.html
Hilfeseite URL https://gitreports.com/issue/joshbalfour/[email protected]
URL der Datenschutzrichtlinien-Seite https://joshbalfour.github.io/disable-scroll-jacking/privacy.html
Unterstützte Sprachen 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'"
}