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.”。
扩展截图
下载Disable Scroll Jacking扩展crx文件
下载Disable Scroll Jacking扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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'" } |