Disable Scroll Jacking
Disables annoying scroll hijacking.
Qu'est-ce que Disable Scroll Jacking ?
Disable Scroll Jacking est une extension Chrome développée par https://joshbalfour.github.io/disable-scroll-jacking, et sa fonction principale est "Disables annoying scroll hijacking.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Disable Scroll Jacking
Téléchargez les fichiers d'extension Disable Scroll Jacking au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Disable Scroll Jacking |
ID | ehpdicggenhgapiikfpnmppdonadlnmp |
URL Officiel | https://chromewebstore.google.com/detail/disable-scroll-jacking/ehpdicggenhgapiikfpnmppdonadlnmp |
Description | Disables annoying scroll hijacking. |
Taille du Fichier | 24.07 KB |
Nombre d'Installations | 913 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2017-12-12 |
Date de Publication | 2017-12-03 |
Évaluation | 2.45/5 Total 20 Évaluations |
Développeur | https://joshbalfour.github.io/disable-scroll-jacking |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://joshbalfour.github.io/disable-scroll-jacking/privacy.html |
URL de la Page d'Aide | https://gitreports.com/issue/joshbalfour/[email protected] |
URL de la Page de Politique de Confidentialité | https://joshbalfour.github.io/disable-scroll-jacking/privacy.html |
Langues Prises en Charge | 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'" } |