📌
ibook
  • README
  • cheatsheet
    • bash
      • builtin
      • syntactic sugar
      • cmd
      • havefun
    • text-processing
      • awk
      • sed
      • html
      • json
      • regex
      • unicode
    • osx
    • curl
    • tricky
    • widget
    • proxy
    • colors
    • math
    • media
    • ssl
      • keystore
      • verification
      • server
      • client
      • tricky
    • windows
      • powershell
      • choco
      • wsl
      • wt
      • shortcut
      • clsid
      • env
      • shell:folder
  • vim
    • nvim
    • install
    • color
    • plugins
      • usage
      • other plugins
      • deprecated
    • tricky
    • viml
    • windows
    • troubleshooting
  • devops
    • admin tools
    • ssh
    • git
      • config
      • alias
      • submodule
      • eol
      • example
      • gerrit
        • gerrit API
      • github
      • troubleshooting
      • tricky
      • statistics
    • pre-commit
    • release-tools
    • tmux
      • cheatsheet
    • ansible
    • vault
    • artifactory
      • api
      • cli
      • aql
      • nginx cert
    • klocwork
      • kwadmin
      • kwserver
      • api
      • q&a
    • elk
    • mongodb
    • android
    • mobile
  • jenkins
    • config
      • windows
    • appearance
    • troubleshooting
    • jenkinsfile
      • utility
      • parallel
      • build
      • envvar
      • properties
      • trigger
      • node
    • script
      • job
      • build
      • stage
      • agent
      • security & authorization
      • exception
      • monitor
      • tricky
    • api
      • blueocean
    • cli
    • plugins
      • kubernetes
      • docker
      • shared-libs
      • lockable-resource
      • ansicolor
      • badge
      • groovy-postbuild
      • simple-theme
      • customizable-header
      • artifactory
      • jira-steps
      • job-dsl
      • build-timeline
      • crumbIssuer
      • coverage
      • uno-choice
      • tricky
  • virtualization
    • kubernetes
      • init
        • kubespray
        • kubeadm
          • environment
          • crio v1.30.4
          • docker v1.15.3
          • HA
        • addons
        • etcd
      • kubectl
        • pod
        • deploy
        • replicasets
        • namespace
        • secrets
      • node
      • certificates
      • events
      • kubeconfig
      • kubelet
      • troubleshooting
      • cheatsheet
      • auth
      • api
      • tools
        • monitor
        • helm
        • network
        • minikube
    • docker
      • run & exec
      • voume
      • remove
      • show info
      • dockerfile
      • dockerd
      • tricky
      • troubleshooting
      • windows
    • crio
    • podman
  • ai
    • prompt
  • osx
    • apps
      • init
      • brew
    • defaults
    • system
    • network
    • script
    • tricky
  • linux
    • devenv
    • util
      • time & date
      • output formatting
      • params
      • tricky
    • nutshell
    • disk
    • network
    • troubleshooting
    • system
      • apt/yum/snap
      • authorization
      • apps
      • x11
    • ubuntu
      • systemctl
      • x
    • rpi
  • programming
    • groovy
    • python
      • config
      • basic
      • list
      • pip
      • q&a
    • others
    • archive
      • angular
      • maven
      • mysql
        • installation
        • logs
      • ruby
        • rubyInstallationQ&A
  • tools
    • fonts
    • html & css
    • Jira & Confluence
    • node & npm
      • gitbook
      • hexo
      • github.page
      • code themes
    • app
      • microsoft office
      • vscode
      • virtualbox
      • iterm2
      • browser
      • skype
      • teamviewer
      • others
  • quotes
  • english
Powered by GitBook
On this page
  • firefox
  • chrome
  • chromium

Was this helpful?

  1. tools
  2. app

browser

Previousiterm2Nextskype

Last updated 2 months ago

Was this helpful?

references:

firefox

about:restartrequired

to show injected web content

[!NOTE|label:references:]

  • go to about:config

  • search for security.csp.enable, and set it to false

$ pgrep -u `id -u` firefox-bin || find ~/.mozilla/firefox -name '*.sqlite'|(while read -e f; do echo 'vacuum;'|sqlite3 "$f" ; done)

customized firefox style

  • steps:

    • create a new folder named chrome

    • create a desktop shortcut (alias) to the chrome folder for easier future access

    • make sure your OS is set to show you file extensions like .txt and .css

    • change a preference in Firefox so it looks for your files at startup (in Firefox 69+)

    • about:config

    • toolkit.legacyUserProfileCustomizations.stylesheets

    • true

    • about:support > Profile Folder > Open Folder or about:profiles > Root Directory > Open Folder

    • User styles belong into <profile_folder>\chrome\ folder

    • Enable once

      • Tools > WebDeveloper > Toggle Tools > 'Customize Tools and get help button' > Settings > Enable browser chrome and add-on debugging toolboxes

      • Tools > WebDeveloper > Toggle Tools > 'Customize Tools and get help button' > Settings > Enable remote debugging

      • Hit Ctrl+Alt+Shift+I or open Tools > WebDeveloper > Browser Toolbox

remove blue line for active tab

  • /* Hide blue stripe on active tab */
    .tab-line[selected="true"] {
      opacity: 0 !important;
    }
  • .tab-line { display: none !important; }
  • #TabsToolbar .tabbrowser-tab[selected] .tab-line {
        display: none !important;
    }

    or

    #TabsToolbar .tabbrowser-tab .tab-line {
        display: none !important;
    }
  • #tabbrowser-tabs {
      --tab-line-color: var(--lwt-accent-color) !important;
    }
  • :root .tab .highlighter::before {
      <do something>
    }
  • .tab-line {
        background-color:#f5f6f7 !important;
    }

    or

    .tabbrowser-tab:not([selected="true"]):hover .tab-line {
       background-color: #cccdcf !important;
    }
  • #main-window[lwthemetextcolor=bright] tab[selected="true"] {
      color: blue !important;
    }
    #main-window[lwthemetextcolor=bright] tab[selected="true"] .tab-background {
      background-color: gold !important;
      background-image: none !important;
    }

    or

    /* ACTIVE TAB BACKGROUND COLOR */
    
    .tab-content[selected="true"] {
      background: rgba(65, 85, 145, 0.4) !important;
    }

chrome

shortcut

[!TIP] references:

KEY
DESCRIPTION
COMMENTS

⇧ + w

move tab to new windows by using Vimium

shift + w

⌘ + l ⇢ ⇧ + ⏎

duplicate tab to new window

cmd+l ⇢ shift+enter

⌘ + l ⇢ ⌥ + ⏎

duplicate tab to same window

cmd+l ⇢ option+enter

⌥ + ⌘ + i

open developer tools

option + command + i

download

[!NOTE|label:references:]

  • download standalone version via : https://www.google.com/chrome/?standalone=1

  • download for OSX : https://www.google.com/chrome/?platform=mac

    • standalone for OSX : https://www.google.com/chrome/?platform=mac&standalone=1

  • download for linux : https://www.google.com/chrome/?platform=linux

    • standalone for linux : https://www.google.com/chrome/?platform=linux&standalone=1

tips

[!NOTE|label:references:]

  • [Tips & tricks for Chrome](https://support.google.com/chrome/answer/3098656?hl=enTips and shortcuts for better browsing)

disable is not secure for http URL

disable input box auto-fill

remove "All Bookmarks"

[!NOTE|label:references:]

  • open about://flags

  • disable Power bookmarks side panel

restart

  • chrome://restart

chrome://chrome-urls

[!NOTE|label:references:]

  • all in one

    • chrome://about/ or about:about

    • chrome://chrome-urls/ or about:chrome-urls

    • chrome://predictors/ or about:predictors

  • quick open

    • chrome://downloads/ or about:download

    • chrome://version or about:version

    • chrome://settings/ or about:settings

    • chrome://flags/ or about:flags

  • utilities

      • chrome://dino/ or about:dino

    • chrome://translate-internals/ or about:translate-internals

    • chrome://user-actions/ or about:user-actions

    • chrome://whats-new/ or about:whats-new

    • chrome://topics-internals/ or about:topics-internals

    • chrome://quota-internals/ or about:quota-internals

    • chrome://profile-internals/ or about:profile-internals

    • chrome://prefs-internals/ or about:prefs-internals

    • chrome://password-manager-internals/ or about:password-manager-internals

    • chrome://ukm/ or about:ukm

    • chrome://components/ or about:components

    • chrome://sync-internals

  • debug

    • chrome://local-state/ or about:local-state

    • chrome://process-internals/ or about:process-internals

    • chrome://system/ or about:system

    • chrome://history-clusters-internals/ or about:history-clusters-internals

    • chrome://web-app-internals/ or about:web-app-internals

    • chrome://histograms/ or about:histograms

    • chrome://gpu/ or about:gpu

    • chrome://net-internals/ or about:net-internals

    • chrome://net-export/ or about:net-export

    • chrome://device-log/ or about:device-log

    • chrome://badcastcrash/ or about:badcastcrash

    • chrome://inducebrowsercrashforrealz/ or about:inducebrowsercrashforrealz

    • chrome://inducebrowserdcheckforrealz/ or about:inducebrowserdcheckforrealz

    • chrome://crash/ or about:crash

    • chrome://crashdump/ or about:crashdump

    • chrome://kill/ or about:kill

    • chrome://hang/ or about:hang

    • chrome://shorthang/ or about:shorthang

    • chrome://gpuclean/ or about:gpuclean

    • chrome://gpucrash/ or about:gpucrash

    • chrome://gpuhang/ or about:gpuhang

    • chrome://memory-exhaust/ or about:memory-exhaust

    • chrome://memory-pressure-critical/ or about:memory-pressure-critical

    • chrome://memory-pressure-moderate/ or about:memory-pressure-moderate

    • chrome://quit/ or about:quit

    • chrome://restart/ or about:restart

incognito mode

[HKEY_CLASSES_ROOT\ChromeHTML\shell\open\command]
@="\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\" -incognito -- \"%1\""
[HKEY_CLASSES_ROOT\htmlfile\shell\open\command]
@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" -incognito %1"
"DelegateExecute"="{17FE9752-0B5A-4665-84CD-569794602F5C}"

extensions

[!NOTE|label:references:]

UUID

  • invalid

    • njabckikapfpffapmjgojcnbfjonfjfg: Export cookies.txt

  • theme

[!NOTE|label:references:]

chromium

  • download page : https://download-chromium.appspot.com -kdcjmllhmhnnadianfhhnoefgcdbpdap download for OSX : https://download-chromium.appspot.com/?platform=Mac&type=snapshots

open your currently active

create a new text file inside the chrome folder named

-> -> -> Secure connections -> Always use secure connections

-> -> -> Save and fill addresses

bpojelgakakmcfmjfilgdlmhefphglae:

caclkomlalccbpcdllchkeecicepbmbm:

ckkdlimhmcjmikdlpkmbgfkaikojcbjk:

clngdbkpkpeebahjckkjfobafhncgmne:

fjnbnpbmkenffdnngjfgmeleoegfcffe:

dbepggeogbaibhgnhhndojpepiihcmeb:

gbmdgpbipfallnflgajpaliibnhdgobh:

ggaabchcecdbomdcnbahdfddfikjmphe:

ghgabhipcejejjmhhchfonmamedcbeod:

gieabiemggnpnminflinemaickipbebg:

ieelmcmcagommplceebfedjlakkhpden:

jlgkpaicikihijadgifklkbpdajbkhjo:

kpppomnoahmhnmmamjfbnnnmeabkjcni:

lobiadjfmkomemokdfhiaaaidgdhcded:

mcbpblocgmgfnpjjppndjkmgjaogfceg:

mnamhmcgcfflfjafflanbhbfffpmkmmm:

ocllfmhjhfmogablefmibmjcodggknml:

padekgcemlokbadohgkifijomclgjgif:

kdcjmllhmhnnadianfhhnoefgcdbpdap: smooth gestures plus |

aghfnjkcakhmadgdomlmlhhaocbkloab:

restart firefox
website will not allow firefox to display the page if another site has embedded it
cleanup firefox databbase
userChrome.css
Profiles - Where Firefox stores your bookmarks, passwords and other user data
How To Customise Firefox 57+ UI with userChrome.css
Aris-t2/CustomCSSforFx
profile folder
userChrome.css
unlock custom css usage in firefox 69 and newer
where to find firefox profile folder? the correct location for user styles
inspect ui or web content
How to hide or change the color of the blue line over the tab?
take out blue on top of tab
is there any way to disable the blue line on top of the currently selected tab?
[help] The blue line on top of active tab is back in Firefox 60
Change active tab line color in Tree Style Tabs?
How to remove the thin blue bar on top of active tabs?
[SOLVED] How to change active tab background color in css?
Keyboard shortcut to pull Google Chrome tab into its own window
duplicate tab in same window
Google Chrome Older Versions Download
How to Download and Install Google Chrome On Mac OS
Tips and shortcuts for better browsing
settings
Privacy and security
Security
settings
Autofill and passwords
Addresses and more
How to remove "All Bookmarks" (Alle Lesezeichen) ?
How do I get rid of the "All Bookmarks" tab?
我所了解的Chrome(不看你真的错过了)
chrome://flags/ 中有哪些值得调整的选项?
chrome默认隐身模式
crx download
Set Character Encoding
Advanced Font Settings
Markdown View
Stylus
Stylish
Vimium
JSON View
Chrome Capture
Click&Clean
CSS Scan
Disable Content-Security-Policy
CrxMouse
Color Picker
Ultimate Color Picker
FireShot
Dream Afar New Tab
Recent Tab
Proxy SwitchOmega
official website
Just Black
switch recently used tab
Recent Tabs
CSS Selector Reference
CSS Selectors
Understand ‘+’, ‘>’ and ‘~’ symbols in CSS Selector
10 CSS3 Properties You Need to Be Familiar With
CSS: Cascading Style Sheets
:is()
A list of Font Awesome icons and their CSS content values
firefox
restart firefox
to show injected web content
cleanup firefox databbase
customized firefox style
chrome
shortcut
download
tips
extensions
chromium
firefox disable security.csp.enable
http not secure
disable autofill