Lucas Bürgy's links
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 1 / 2
22 results tagged firefox  ✕
Browser Toolbox - Firefox Source Docs documentation https://firefox-source-docs.mozilla.org/devtools-user/browser_toolbox/index.html
Sun Jun 21 17:54:53 2026
QRCode

Enable the browser toolbox to inspect FIrefox itself

firefox
How to Install Firefox as DEB on Ubuntu (Not Snap) - OMG! Ubuntu https://www.omgubuntu.co.uk/2022/04/how-to-install-firefox-deb-apt-ubuntu-22-04
Wed Aug 21 00:52:06 2024
QRCode
firefox deb ubuntu
Sidebery - Hide/show sidebar when hovering (very useful) : r/FirefoxCSS https://www.reddit.com/r/FirefoxCSS/comments/pcuir9/sidebery_hideshow_sidebar_when_hovering_very/
Sun Jun 23 02:35:58 2024
QRCode

Maybe I'll want to do this one day

firefox
Sidebery – Get this Extension for 🦊 Firefox (en-US) https://addons.mozilla.org/en-US/firefox/addon/sidebery/
Sun Jun 23 02:32:47 2024
QRCode

Great extension for vertical tabs with high customization.

My sidebery style:

#root.root {--tabs-indent: 16px;}

/* No empty space after last tabs */
.TabsPanel .bottom-space {
    height: 0
}

/* The spaces in the navigation bar take a whole line. It forces a line return */
.NavigationBar .nav-item[data-class="space"][data-type="dynamic"] {
//  height: 8px;
    height: 0;
    width: 100% !important;
}

/* The delimiters are horizontal now and force a line return */
.NavigationBar.-top .nav-item[data-class="space"][data-type="static"] {
    height: 8px;
    width: 100% !important;
}
.NavigationBar.-top .nav-item[data-class="space"][data-type="static"]::after {
    height: 1px;
    width: 100%;
    top: auto;
    left: auto;
    background-color: #75747A;
}

/* Moving Sidebery navigation bar to bottom, to mimic how Space works on Arc Browser. Make sure to choose Horizontal when activating the navigation bar. */
.top-horizontal-box {
  display: flex;
  order: 10; 
}
#search_bar {
    order: 5;
}

/* A bottom border on the pinned tabs bar */
.PinnedTabsBar {
     border-bottom: 1px solid #75747A;
}

.Tab .title {
    font-size: 12px;
    font-family: unset;
}

/* OLD STYLES
#root.root {--tabs-indent: 16px;}

/* No empty space after last tabs */
.TabsPanel .bottom-space {
    height: 0
}

/* The spaces in the navigation bar take a whole line. It forces a line return */
.NavigationBar .nav-item[data-class="space"][data-type="dynamic"] {
//  height: 8px;
    height: 0;
    width: 100% !important;
}

/* The delimiters are horizontal now and force a line return */
.NavigationBar.-top .nav-item[data-class="space"][data-type="static"] {
    height: 8px;
    width: 100% !important;
}
.NavigationBar.-top .nav-item[data-class="space"][data-type="static"]::after {
    height: 1px;
    width: 100%;
    top: auto;
    left: auto;
    background-color: #75747A;
}

/* Moving Sidebery navigation bar to bottom, to mimic how Space works on Arc Browser. Make sure to choose Horizontal when activating the navigation bar. */
.top-horizontal-box {
  display: flex;
  order: 10; 
}
#search_bar {
    order: 5;
}

/* A bottom border on the pinned tabs bar */
.PinnedTabsBar {
     border-bottom: 1px solid #75747A;
}

.Tab .title {
    font-size: 12px;
    font-family: unset;
}
*/
firefox extension
Compacting Firefox's Layout with Sidebery and User Chrome https://jahed.dev/2021/10/08/compacting-firefox-layout-with-sidebery-and-user-chrome/
Sun Jun 23 02:29:43 2024
QRCode

For user chrome, you need to set to true this flag toolkit.legacyUserProfileCustomizations.stylesheets in about:config

Then create chrome/userChrome.css in your profile. You can find it with about:profiles

My user chrome:

/* Hide the "Tree Style Tab" header at the top of the sidebar */
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header,
/* Hide the "Sidebery" header at the top of the sidebar */
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] #sidebar-header {
  display: none;
}

/* https://jahed.dev/2021/10/08/compacting-firefox-layout-with-sidebery-and-user-chrome/ */
#main-window[titlepreface*="[Sidebery]"] #navigator-toolbox {
  /* --toolbar-bgcolor: #1C1B22; */
  --toolbar-bgcolor: #000;
  background-color: var(--toolbar-bgcolor) !important;
  display: flex !important;
  /* flex-direction: row; */
  flex-direction: row-reverse;
}

#main-window[titlepreface*="[Sidebery]"] #TabsToolbar .titlebar-spacer,
#main-window[titlepreface*="[Sidebery]"] #TabsToolbar .toolbar-items {
  display: none !important;
}

#main-window[titlepreface*="[Sidebery]"] #TabsToolbar {
  /* #main-window[titlepreface*="[Sidebery]"] #TabsToolbar .titlebar-buttonbox { */
  /* margin-left: 12px !important; */
  /* margin-right: 12px !important; */
  max-width: fit-content;
}

#main-window[titlepreface*="[Sidebery]"] #nav-bar {
  flex-grow: 1 !important;
}

#sidebar-splitter {
  --sidebar-border-color: var(--chrome-content-separator-color);
  width: 4px !important;
  background-color: transparent !important;
  margin-inline-start: -4px !important;
  border: 0 !important;
}

#urlbar-background {
  --toolbar-field-border-color: transparent;
  --toolbar-field-background-color: transparent;
  --toolbar-field-focus-border-color: #a86595;
  --toolbar-field-focus-background-color: var(--toolbar-bgcolor);
  --arrowpanel-border-color: #a86595;
}

#main-window[titlepreface*="[Sidebery]"] #titlebar {
  flex-direction: row;
  order: 1;
}

#main-window[titlepreface*="[Sidebery]"] #PersonalToolbar {
  flex-direction: row;
  order: 2;
}

#main-window[titlepreface*="[Sidebery]"] #toolbar-menubar[inactive] {
  display: none;
}

/* Put the settings button on the left */
#PanelUI-button {
  order: -1;
  padding-inline-end: var(--toolbarbutton-outer-padding);
}

#main-window[titlepreface*="[Sidebery]"] #nav-bar-customization-target {
  padding-inline-end: var(--toolbar-start-end-padding);
}

/* No floating tabs */
.tab-background {
  /* border-radius: 0px 0px !important; */
  margin-bottom: 0px !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* Don't show the space on the left when you're in windowed mode */
.titlebar-spacer[type="pre-tabs"] {
  display: none;
}

/* Hide the private browsing label */
#private-browsing-indicator-with-label label {
  display: none;
}

/* Remove the down arrow button */
#alltabs-button {
  display: none;
}

/* Remove the space to the right of the tabs */
.titlebar-spacer[type="post-tabs"] {
  display: none;
}

/* Hide Firefox View */
#firefox-view-button {
  display: none;
}
#tabbrowser-tabs {
  border-inline-start: 0 !important;
  margin-inline-start: 0 !important;
  padding-inline-start: 0 !important;
}
.tabbrowser-tab:first-child {
  padding-left: 0 !important;
}

#main-window[titlepreface*="[Sidebery]"] .browser-toolbar:not(.browser-titlebar) {
  background-color: transparent !important;
}
firefox userchrome
How to inspect Firefox's UI? - Super User https://superuser.com/questions/1608096/how-to-inspect-firefoxs-ui
Fri Jun 21 00:11:39 2024
QRCode
firefox browser
Firefox Private Relay https://relay.firefox.com/
Mon May 11 12:58:10 2020
QRCode

Email temporaires par Mozilla

firefox
Ma liste des tweaks « about:config » dans Firefox - Le Hollandais Volant https://lehollandaisvolant.net/?d=2020/01/02/11/28/39-ma-liste-des-tweaks-aboutconfig-dans-firefox
Sun Apr 19 13:08:07 2020
QRCode

Ma config de firefox

clé valeur description
browser.display.focus_ring_width 0 Enlève le focus ring
ui.SpellCheckerUnderlineStyle 3 Change le soulignement des mots mal orthographiés
browser.urlbar.trimURLs false Réaffiche les URL complètes
accessibility.tabfocus 3 Désactive la touche de tabulation pour les liens
browser.tabs.closeWindowWithLastTab false Désactive la fermeture de Firefox au dernier onglet
browser.ui.zoom.force-user-scalable true Réactive le zoom sur les pages
extensions.pocket.enabled false Désactive Pocket
browser.sessionstore.interval 120000 Réduire la fréquence des sauvegardes de session (secondes)
full-screen-api.warning.timeout 0 Désactiver le popup lors du passage en plein écran
media.autoplay.enabled.user-gestures-needed true Désactive l’autoplay des vidéos/médias
media.autoplay.allow-muted false Désactive l’autoplay des vidéos/médias
accessibility.warn_on_browsewithcaret false Disable the warning when pressing F7
toolkit.legacyUserProfileCustomizations.stylesheets true Enable userChrome.css
media.peerconnection.enabled false Désactiver le WebRTC
Old (now they're the default value):
clé
valeur description
layout.spellcheckDefault 2 Active le correcteur orthographique dans tous les champs
network.prefetch-next false Désactiver le préfetch
browser.link.open_newwindow.restriction 0 Ouvrir dans un nouvel onglet au lieu d'une nouvelle fenêtre
network.IDN_show_punycode true Affiche les punycode
firefox
Comment activer le DNS-over-HTTPS (DoH) sous Firefox et Chrome / Brave – Korben https://korben.info/comment-activer-le-dns-over-https-doh-sous-firefox-et-chrome-brave.html
Sat Mar 14 14:17:28 2020
QRCode

Comment activer le chiffrement SNI: https://korben.info/comment-activer-le-chiffrement-sni-encrypted-sni.html
La liste des fournisseurs (sérieux) de DNS compatibles DNS-over-HTTPS (DoH): https://korben.info/la-liste-des-fournisseurs-serieux-de-dns-compatibles-dns-over-https-doh.html
Browsing Experience Security Check: https://www.cloudflare.com/ssl/encrypted-sni/

dns DoH firefox chrome
Comment installer une extension Chrome ou Opera sous Firefox ? – Korben https://korben.info/comment-installer-une-extension-chrome-ou-opera-sous-firefox.html
Thu Sep 6 19:01:45 2018
QRCode
firefox
How to Stop Websites From Asking to Show Notifications https://www.howtogeek.com/288946/how-to-stop-websites-from-asking-to-show-notifications/
Fri Jul 27 01:09:34 2018
QRCode

https://techdows.com/2016/03/disable-vivaldi-notifications.html
chrome://settings/content/notifications

localisation:
vivaldi://settings/content/location

chrome firefox vivaldi
Can I make pop-ups open in a new Tab instead of a separate window? How? | Forum d’assistance Firefox | Assistance de Mozilla https://support.mozilla.org/fr/questions/1066799
Mon Jun 25 13:59:02 2018
QRCode
firefox
Supprimer les pointillés sous Firefox [Résolu] - Forum Mozilla Firefox https://www.commentcamarche.net/forum/affich-3315364-supprimer-les-pointilles-sous-firefox
Sun Jun 24 16:57:19 2018
QRCode
firefox
Website Themes & Skins by Stylish | Userstyles.org https://userstyles.org/
Sat May 20 00:15:01 2017
QRCode

Permet de changer automatiquement les CSS des pages Web, donc d'avoir potentiellement des dark mode un peu sur tous les sites et peu même modifier le navigateur

firefox
Comment se protéger contre les attaques de phishing qui utilisent des noms de domaine dans d'autres alphabets - Korben https://korben.info/se-proteger-contre-attaques-de-phishing-utilisent-noms-de-domaine-dautres-alphabets.html
Thu May 18 21:57:00 2017
QRCode
firefox
Accélérez le chargement des pages dans Firefox - Korben https://korben.info/accelerez-firefox.html
Sat Apr 29 15:47:20 2017
QRCode
firefox
Accélérer la rapidité de chargement des pages de Firefox - LinuxTricks https://www.linuxtricks.fr/news/10-logiciels-libres/175-accelerer-la-rapidite-de-chargement-des-pages-de-firefox/
Sat Apr 29 15:46:16 2017
QRCode
firefox
Réduire la consommation de mémoire de firefox - Korben https://korben.info/reduire-la-consommation-de-memoire-de-firefox.html
Sat Apr 29 15:42:05 2017
QRCode

Permet de réduire la consommation de Firefox lorsqu'il est réduit dans la barre des tâches

firefox
Retirer les informations de sécurité d'un site de la barre de location de Firefox https://support.mozilla.org/fr/questions/1061161#answer-726253
Sat Apr 29 15:40:19 2017
QRCode

L'emplacement du fichier:

http://kb.mozillazine.org/index.php?title=UserChrome.css

firefox
L’intégration de Pocket dans Firefox ? Beurk… - Korben https://korben.info/lintegration-de-pocket-dans-firefox-beurk.html
Sat Apr 29 15:38:32 2017
QRCode

Permet de désactiver Pocket dans Firefox

firefox
page 1 / 2
1244 links, including 4 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn