Skip to content

Instantly share code, notes, and snippets.

@ashleyw
Created November 23, 2011 18:30
Show Gist options
  • Save ashleyw/1389467 to your computer and use it in GitHub Desktop.
Save ashleyw/1389467 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Pinboard
// @namespace pinboard.com
// @include https://pinboard.in*
// ==/UserScript==
var privates = document.getElementsByClassName("private");
for (i = 0; i < privates.length; i++) {
privates[i].className = "bookmark";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment