Last active
June 19, 2020 01:02
-
-
Save sgur/adef43b21e054fcbd70483b001dd9962 to your computer and use it in GitHub Desktop.
Firefox の設定 (user.js)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// アクセシビリティ機能は強制的にオフにする | |
user_pref("accessibility.force_disabled", 1); | |
// Smooth Scroll のチューニング | |
user_pref("general.smoothScroll.msdPhysics.enabled",true); | |
// WebRender を有効化 | |
user_pref("gfx.webrender.all", true) | |
// 検索エンジンの不要なものを表示しない | |
user_pref("browser.search.hiddenOneOffs","Yahoo! JAPAN,Bing,楽天市場,ヤフオク!,教えて!goo"); | |
// ClearType 関連のチューニング | |
user_pref("gfx.use_text_smoothing_setting",true); | |
user_pref("gfx.font_rendering.cleartype_params.rendering_mode",5); | |
user_pref("gfx.font_rendering.cleartype_params.gamma",1700); | |
// Cert 関連 | |
user_pref("security.enterprise_roots.enabled", true); | |
user_pref("extensions.update.requireBuiltInCerts", false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment