Skip to content

Instantly share code, notes, and snippets.

@shikishima
Created February 21, 2024 08:43
Show Gist options
  • Select an option

  • Save shikishima/8f71cc484d26cb890d466e359a3d613c to your computer and use it in GitHub Desktop.

Select an option

Save shikishima/8f71cc484d26cb890d466e359a3d613c to your computer and use it in GitHub Desktop.
Firefoxのuser.js
// 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