home.social

#contextcopylink — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #contextcopylink, aggregated by home.social.

  1. I think my #userChrome.css for #firefox is done now. I am pretty content with how it looks. Not stealing screen estate as it did before.

    If anyone want to do it themselves I'll attach my userChrome.

    Basically here is what you do...

    Enable userChrome.css customizations in latest Firefox versions:
    Open about:config
    Set toolkit.legacyUserProfileCustomizations.stylesheets = true

    Find menu item ID:
    Open developer tools (F12)
    Open the settings (F1)
    Check "Enable browser chrome and add-on debugging toolboxes"
    Check "Enable remote debugging"
    Open browser debugging (Ctrl-Alt-ShiftI), accept incoming connection
    In the browser debugging click on options button (...) > Disable popup auto-hide
    Open FF context menu
    In the browser debugging use "Inspect Element" to find the victim menu item
    E.g. the CSS selector for option "Copy Link" is:
    #context-copylink

    Create "userChrome.css":
    Open FF profile: Help > Troubleshooting Information > Profile Directory
    Create "chrome" folder
    Create "userChrome.css"
    Hide menu item by adding the found CSS selector to the userChrome.css:
    #context-copylink {
    display: none;
    }

    After adding all the desired menu items restart Firefox

    source:
    superuser.com/questions/1741879/edit-firefoxs-context-menus jaunsmotivs.blogspot.com/2018/08/how-to-remove-option-from-firefox.html