Created
May 30, 2016 08:50
-
-
Save delbio/5f1cabea9d6918399623d2a286ec8436 to your computer and use it in GitHub Desktop.
Javascript_Greasemonkey_TagHighlighter.user.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Tag Highlighter | |
// @namespace https://github.com/thedom85/TagHighlighter | |
// @description exec JS TagHighlighter on document loaded | |
// @include * | |
// @require https://raw.githubusercontent.com/thedom85/TagHighlighter/master/src/taghighlighter.js | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
//Avoid conflict | |
var fileref=document.createElement('script'); | |
fileref.setAttribute("type","text/javascript"); | |
fileref.setAttribute("src", "https://raw.githubusercontent.com/thedom85/TagHighlighter/master/src/taghighlighter.js"); | |
document.addEventListener("DOMContentLoaded", function(event) { | |
taghighlighter.Hlighter("*","pesticide"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment