Created
December 14, 2022 13:43
-
-
Save umnik1/8bb2ee95fed786fd08dbdad3eac249aa to your computer and use it in GitHub Desktop.
DTFPoopDislike
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 DTFPoopDislike | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @icon https://img.freepik.com/premium-vector/betty-boop-cowboys_690789-538.jpg | |
// @homepageURL https://dtf.ru/u/52199 | |
// @description Какашка вместо дизлайка | |
// @author Maksim Chingin | |
// @match https://dtf.ru/* | |
// @run-at document-start | |
// @grant none | |
// ==/UserScript== | |
// Проверяем, когда удобнее вставлять | |
addEventListener('DOMNodeInserted', function() { | |
if (document.querySelector('.icon--v_dislike')) { | |
document.querySelector('.icon--v_dislike').replaceWith('💩'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment