Hides private tags (those that .start with a period) and private bookmarks. Not "secure", but hopefully good enough to avoid some embarassment.
Pinboard Hide Private Bookmarks and Tags - HighProgrammer by alandesmet
Imported and mirrored from https://alandesmet.gitlab.io/alan-usercss/pinboard-hide-private.user.css
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
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;
}
}