Created
January 7, 2019 19:02
-
-
Save wodim/8291efd6af71e125b37acc1e56f2764b to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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