Skip to content

Instantly share code, notes, and snippets.

@wodim
Created January 7, 2019 19:02
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 wodim/8291efd6af71e125b37acc1e56f2764b to your computer and use it in GitHub Desktop.
Save wodim/8291efd6af71e125b37acc1e56f2764b to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name ProxyList
// @match https://www.sslproxies.org/
// ==/UserScript==
(function() {
'use strict';
var list = document.getElementsByTagName("td");
for (let item of list) {
if (item.textContent == "anonymous") {
item.parentElement.style.backgroundColor = "#fdd";
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment