Disable Scroll Jacking
Disables annoying scroll hijacking.
Hvad er Disable Scroll Jacking?
Disable Scroll Jacking er en Chrome-udvidelse udviklet af https://joshbalfour.github.io/disable-scroll-jacking, og dens hovedfunktion er "Disables annoying scroll hijacking.".
Udvidelsesskærmbilleder
Download Disable Scroll Jacking-udvidelses-CRX-fil
Download Disable Scroll Jacking-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Disable Scroll Jacking |
ID | ehpdicggenhgapiikfpnmppdonadlnmp |
Officiel URL | https://chromewebstore.google.com/detail/disable-scroll-jacking/ehpdicggenhgapiikfpnmppdonadlnmp |
Beskrivelse | Disables annoying scroll hijacking. |
Filstørrelse | 24.07 KB |
Antal Installationer | 913 |
Nuværende Version | 0.0.3 |
Senest Opdateret | 2017-12-12 |
Udgivelsesdato | 2017-12-03 |
Bedømmelse | 2.45/5 Samlet 20 Bedømmelser |
Udvikler | https://joshbalfour.github.io/disable-scroll-jacking |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://joshbalfour.github.io/disable-scroll-jacking/privacy.html |
Hjælpeside-URL | https://gitreports.com/issue/joshbalfour/[email protected] |
URL til Fortrolighedspolitik Side | https://joshbalfour.github.io/disable-scroll-jacking/privacy.html |
Understøttede Sprog | 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'" } |