-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathremove-hoppie.user.js
34 lines (31 loc) · 1.04 KB
/
remove-hoppie.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// ==UserScript==
// @name Cryptohopper Hoppie Removal
// @namespace https://github.com/markrickert/cryptohopper-dashboard-watchlist
// @version 0.3
// @description Removes the image of "hoppie" sticking his arm out from the side of the page.
// @author @markrickert
// @homepage https://github.com/markrickert/cryptohopper-dashboard-watchlist
// @updateURL https://github.com/markrickert/cryptohopper-dashboard-watchlist/raw/main/remove-hoppie.user.js
// @match https://www.cryptohopper.com/*
// @icon https://www.google.com/s2/favicons?domain=cryptohopper.com
// @grant GM_addStyle
// ==/UserScript==
try {
(function () {
"use strict";
function removeHoppie() {
GM_addStyle(`
img.hoppie-paperclip,
img.hoppiePaperclipAnimation,
div.hoppie-speech-container {
display: none !important;
}
`);
}
jQuery(() => removeHoppie());
})();
} catch (err) {
console.log(
`Error in script remove-hoppie.user.js: ${err.name}: ${err.message}`
);
}