Created
February 21, 2024 08:43
-
-
Save shikishima/8f71cc484d26cb890d466e359a3d613c to your computer and use it in GitHub Desktop.
Firefoxのuser.js
This file contains hidden or 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
| // userChrome.css有効化 | |
| user_pref('toolkit.legacyUserProfileCustomizations.stylesheets', true); | |
| // ブラウザデバッガを有効 | |
| user_pref('devtools.chrome.enabled', true); | |
| // リモートデバッガを有効 | |
| user_pref('devtools.debugger.remote-enabled', true); | |
| // DLディレクトリ | |
| user_pref('browser.download.dir', 'H:home\tmp'); | |
| // abount:configで警告を表示しない | |
| user_pref('browser.aboutConfig.showWarning', false); | |
| // 隠し設定 | |
| user_pref('browser.tabs.closeWindowWithLastTab', false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment