Skip to content

Instantly share code, notes, and snippets.

@eveliotc
Forked from JoelBesada/README.md
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eveliotc/68fbf2e317c8b4b473c3 to your computer and use it in GitHub Desktop.
Save eveliotc/68fbf2e317c8b4b473c3 to your computer and use it in GitHub Desktop.

A visited command for Backtick. Injects CSS to visually differentiate regular links from visited ones.

To install Copy 68fbf2e317c8b4b473c3 then Paste it into the custom commands field in the Backtick settings. You can easily access the settings by clicking the Backtick icon on the command execution console.

(function(){
var node = document.createElement('style');
node.innerHTML = 'a:visited{color:#551a8b !important;}';
document.body.appendChild(node);
}());
{
"name": "Show Visited Links",
"description": "Injects CSS to visually differentiate regular anchor links from visited ones.",
"icon": "http://www.placehold.it/60x60/ffffff/551a8b.png&text=a:v",
"link": "https://gist.github.com/eveliotc/68fbf2e317c8b4b473c3"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment