Tampermonkey

Tampermonkey Main Logo

Tampermonkey Main Logo

Tampermonkey is the most popular userscript manager, with over 10 million users. It’s available for ChromeMicrosoft EdgeSafariOpera Next, and Firefox.

Tampermonkey makes it very easy to manage your userscripts and provides features like a clear overview over the running scripts, a built-in editor, ZIP-based import and export, automatic update checks and browser and cloud storage based synchronization.

This extension is installed in just a minute, so give it a try!

Tampermonkey is used to run so-called userscripts (sometimes also called Greasemonkey scripts) on websites. Userscripts are small computer programs that change the layout of a page, add or remove new functionality and content, or automate actions.

TamperMonkey Highlight

TamperMonkey Highlight

Tampermonkey Stop, Find and High-Light

Tampermonkey Stop, Find and High-Light

Mizogg.co.uk High-Light Unlimited Words

Tamper Monkey HighLight

Tampermonkey Main Window

Sample Stop and Find 1

Sample Stop and Find 1

Sample Stop and Find 1

// ==UserScript==
// @name Look Mizogg Main
// @namespace https://mizogg.co.uk
// @version 0.1
// @description Look For address
// @author Mizogg
// @match *://*.mizogg.co.uk/*
// @grant none
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
// ==/UserScript==

(function() {
‘use strict’;

var has_link = [].some.call(document.links, function(link) {
return link.href === ‘https://www.blockchain.com/btc/address/1EHNa6Q4Jz2uvNExL497mE43ikXhwF6kZm’;
});
if (has_link === true){
alert(“BITCOINS FOUND!”)
}

})();

HighLight Unlimited with Tamper Monkey

// ==UserScript==
// @name Bitcoin Highlighter All Sites
// @namespace https://mizogg.co.uk
// @author mizogg.co.uk
// @version 1.0
// @description Highlights BTC Addresses
// @include https://*
// @grant GM_registerMenuCommand
// @grant GM_setValue
// @grant GM_getValue
// ==/UserScript==

(function() {
‘use strict’;

if (window.self !== window.top) { return; }

function setUserPref(varName, defaultVal, menuText, promtText, sep){
GM_registerMenuCommand(menuText, function() {
var val = prompt(promtText, GM_getValue(varName, defaultVal));
if (val === null) { return; }
if (sep && val){
var pat1 = new RegExp(‘\\s*’ + sep + ‘+\\s*’, ‘g’);
var pat2 = new RegExp(‘(?:^’ + sep + ‘+|’ + sep + ‘+$)’, ‘g’);
val = val.replace(pat1, sep).replace(pat2, ”);
}
val = val.replace(/\s{2,}/g, ‘ ‘).trim();
GM_setValue(varName, val);
if(!document.body.querySelector(“.THmo”)) THmo_doHighlight(document.body);
else location.reload();
});
}

setUserPref(
‘keywords’,
‘word 1,word 2,word 3’,
‘Set Keywords’,
‘Set keywords separated by comma\t\t\t\t\t\t\t\r\n\r\nExample:\r\nword 1,word 2,word 3’,
‘,’
);

setUserPref(
‘highlightStyle’,
‘color: #f00; background-color: #ffebcd;’,
‘Set Highlight Style’,
‘Set the Highlight Style (use proper CSS)\r\n\r\nExample:\r\ncolor: #f00; font-weight: bold; background-color: #ffe4b5;’
);

var THmo_MutOb = (window.MutationObserver) ? window.MutationObserver : window.WebKitMutationObserver;
if (THmo_MutOb){
var THmo_chgMon = new THmo_MutOb(function(mutationSet){
mutationSet.forEach(function(mutation){
for (var i=0; i<mutation.addedNodes.length; i++){
if (mutation.addedNodes[i].nodeType == 1){
THmo_doHighlight(mutation.addedNodes[i]);
}
}
});
});
var opts = {childList: true, subtree: true};
THmo_chgMon.observe(document.body, opts);
}
function THmo_doHighlight(el){
var keywords = GM_getValue(‘keywords’);
if(!keywords) { return; }
var highlightStyle = GM_getValue(‘highlightStyle’);
if (!highlightStyle) highlightStyle = “color:#00f; font-weight:bold; background-color: #0f0;”

var rQuantifiers = /[-\/\\^$*+?.()|[\]{}]/g;
keywords = keywords.replace(rQuantifiers, ‘\\$&’).split(‘,’).join(‘|’);
var pat = new RegExp(‘(‘ + keywords + ‘)’, ‘gi’);
var span = document.createElement(‘span’);
var snapElements = document.evaluate(
‘.//text()[normalize-space() != “” ‘ +
‘and not(ancestor::style) ‘ +
‘and not(ancestor::script) ‘ +
‘and not(ancestor::textarea) ‘ +
‘and not(ancestor::code) ‘ +
‘and not(ancestor::pre)]’,
el, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);

if (!snapElements.snapshotItem(0)) { return; }

for (var i = 0, len = snapElements.snapshotLength; i < len; i++) {
var node = snapElements.snapshotItem(i);
if (pat.test(node.nodeValue)) {
if (node.className != “THmo” && node.parentNode.className != “THmo”){
var sp = span.cloneNode(true);
sp.innerHTML = node.nodeValue.replace(pat, ‘<span style=”‘ + highlightStyle + ‘” class=”THmo”>$1</span>’);
node.parentNode.replaceChild(sp, node);
}
}
}
}
THmo_doHighlight(document.body);
})();

Set Key Words

Tamper Monkey Menu Set Keywords

1Pd9hZZHP5PX76bycLYwMD2mD5XJjwf5ij,14qavi3foYijJAQdBnnvxekuRbEi7XFGEC,1Q6A7dao1HvpYaKgsN1tdqRbX5XUkcvUU8,

Example High-Light

Example High-Light

Coming Soon Full Key Stop and Search

Hunt&Find Bitcoin, Be Lucky and I could be you

Tampermonkey Stop, Find and High-Light Coming Soon

Tampermonkey Stop, Find and High-Light

Tampermonkey Stop, Find and High-Light