Last active
July 27, 2024 01:17
-
-
Save Dzmuh/056708c00a6f05a79f9d65e3993eee53 to your computer and use it in GitHub Desktop.
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 habr-cleaner | |
// @description Clear the Habr.com layout for easy save. | |
// @description:ru Очищает макет Habr.com для простого компактного сохранения. | |
// @namespace habr | |
// @match https://habr.com/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js | |
// @version 1.2 | |
// @author Nikolay Raspopov | |
// @license MIT | |
// @icon http://habr.com/favicon.ico | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var $ = window.jQuery; | |
$(document).ready( setTimeout( function(){ | |
$('.tm-header__container').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(); | |
$('.tm-header').remove(); | |
$('.tm-page__sidebar').remove(); | |
$('.tm-company-profile-card').remove(); | |
$('.tm-page-progress-bar').remove(); | |
$('.tm-page__header').remove(); | |
$('.tm-footer-menu').remove(); | |
$('.tm-footer').remove(); | |
$('.tm-base-layout__header').remove(); | |
$('.tm-article-sticky-panel').remove(); | |
$('.tm-block_spacing-bottom').remove(); | |
$('.tm-block_spacing-around').remove(); | |
$('.tm-project-block_variant-tasks').remove(); | |
//$('.tm-article-presenter__footer').remove(); | |
$('.tm-article-presenter__meta').remove(); | |
$('.persona').remove(); | |
$('.tm-scroll-top').remove(); | |
$('.v-portal').remove(); | |
$('.Vue-Toastification__container').remove(); | |
$('.vue-portal-target').remove(); | |
$('.pswp').remove(); | |
$('html, body, .tm-layout__wrapper, .tm-layout, .tm-layout__container, .tm-page, .tm-page-width, .tm-page__wrapper, .tm-page__main').css({ | |
'background-color' : 'white', | |
}); | |
$('.article-formatted-body table td').css({ | |
'border-color' : 'black', | |
}); | |
//$('.tm-page, .tm-page-width, .tm-page__main, .tm-article-presenter').css({ | |
// 'max-width' : 'none', | |
// 'min-width' : 'none', | |
// 'margin' : 'auto', | |
// 'padding' : 'unset', | |
//}); | |
$('.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