Skip to content

Pinboard Hide Private Bookmarks and Tags - HighProgrammer by alandesmet

Imported and mirrored from https://alandesmet.gitlab.io/alan-usercss/pinboard-hide-private.user.css

Screenshot of Pinboard Hide Private Bookmarks and Tags - HighProgrammer

Details

Authoralandesmet

LicenseGPL-2.0-or-later

Categorypinboard

Created

Updated

Size743 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Hides private tags (those that .start with a period) and private bookmarks. Not "secure", but hopefully good enough to avoid some embarassment.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           Pinboard Hide Private Bookmarks and Tags - HighProgrammer
@namespace      gitlab.com/AlanDeSmet/alan-usercss
@version        1.0.0
@description    Hides private tags (those that .start with a period) and private bookmarks. Not "secure", but hopefully good enough to avoid some embarassment.
@author         Alan De Smet
@homepageURL    https://gitlab.com/AlanDeSmet/alan-usercss
@supportURL     https://gitlab.com/AlanDeSmet/alan-usercss/issues
@license        GPL-2.0-or-later

==/UserStyle== */
@-moz-document domain("pinboard.in") {
    a[href*="/t:."] { /* Private Tags */
        display: none;
    }
    div.bookmark.private { /* Private Bookmarks */
        display: none; 
    }
}

Reviews

No reviews yet.