Last active
July 27, 2024 01:09
-
-
Save Dzmuh/505958e87fe51a1b0774da06e1f71007 to your computer and use it in GitHub Desktop.
poland-consult.com cleaner
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 poland-consult-cleaner | |
// @namespace poland-consult.com | |
// @version 0.0.2 | |
// @description Clear the poland-consult.com layout for easy print. WIP. | |
// @description:ru Очищает макет poland-consult.com для простой печати или сохранения. | |
// @updateURL https://gist.github.com/Dzmuh/505958e87fe51a1b0774da06e1f71007/raw/poland-consult-cleaner.user.js | |
// @downloadURL https://gist.github.com/Dzmuh/505958e87fe51a1b0774da06e1f71007/raw/poland-consult-cleaner.user.js | |
// @author Dzmuh | |
// @match https://poland-consult.com/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js | |
// @icon https://poland-consult.com/wp-content/themes/poland/img/logo-mobile.png | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var $ = window.jQuery; | |
$(document).ready( setTimeout( function(){ | |
$('.hd_menu_top').append("<div class='clearIt' style='padding-left: 8px; padding-right: 8px;'><button type='button'> 🧹 </button></div>"); | |
$('.clearIt').click( function() { | |
$('script').remove(); | |
$('noscript').remove(); | |
$('iframe').remove(); | |
$('.hd_menu').remove(); | |
$('.hd_search').remove(); | |
$('.ya_share').remove(); | |
$('.shemaRabotodatel').remove(); | |
$('.colored').remove(); | |
$('.clearIt').remove(); // self-destruct | |
}); | |
}, 2000 ) ); // revive delay | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment