Disable Scroll Jacking
Disables annoying scroll hijacking.
What is Disable Scroll Jacking?
Disable Scroll Jacking is a Chrome extension developed by https://joshbalfour.github.io/disable-scroll-jacking, and its main feature is "Disables annoying scroll hijacking.".
Extension Screenshots
Download Disable Scroll Jacking Extension CRX File
Download Disable Scroll Jacking extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Disable Scroll Jacking |
ID | ehpdicggenhgapiikfpnmppdonadlnmp |
Official URL | https://chromewebstore.google.com/detail/disable-scroll-jacking/ehpdicggenhgapiikfpnmppdonadlnmp |
Description | Disables annoying scroll hijacking. |
File Size | 24.07 KB |
Installation Count | 913 |
Current Version | 0.0.3 |
Last Updated | 2017-12-12 |
Publish Date | 2017-12-03 |
Rating | 2.45/5 Total 20 Ratings |
Developer | https://joshbalfour.github.io/disable-scroll-jacking |
[email protected] | |
Payment Type | free |
Extension Website | https://joshbalfour.github.io/disable-scroll-jacking/privacy.html |
Help Page URL | https://gitreports.com/issue/joshbalfour/[email protected] |
Privacy Policy Page URL | https://joshbalfour.github.io/disable-scroll-jacking/privacy.html |
Supported Languages | 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'" } |