How to hide the url of the browser's left-bottom corner when a link is hovered

前端 未结 4 1616
情深已故
情深已故 2021-01-24 05:03

I would like to hide the url showing up, when I hover a link with the cursor. I only want to this on my browser. There are a lot questions about this around the web, but I don\'

4条回答
  •  不知归路
    2021-01-24 05:38

    If it's just for your browser (Firefox) you can add

    statuspanel {display:none!important;}
    

    below the @namespace line in your userChrome.css file

    As of version 61 it has changed to:

    #statuspanel {display:none!important;}
    

    In Firefox go to settings click help, click Troubleshooting Information. scroll down a bit and there will be a Open Folder button. Click it to go to your user profile. Open the chrome folder and the userChrome.css file should be there. If not just create a folder called chrome. Inside that create a file and call it userChrome.css. The file needs to have:

    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    

    As the first line. Below that add:

    statuspanel {display:none!important;}
    

    Save the file and restart Firefox and you should be good to go.

提交回复
热议问题