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 |
Eメール | [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'" } |