Advertisement
etybgm

Untitled

Apr 19th, 2023
7,056
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. // ==UserScript==
  2. // @name MICMIC multiCol
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description change the column count
  6. // @author Linniem
  7. // @match https://www.micmicidol.club/*
  8. // @grant GM_setValue
  9. // @grant GM_getValue
  10. // @grant GM_addStyle
  11. // ==/UserScript==
  12.  
  13. if (window.location.href.startsWith('https://www.micmicidol.club/')) {
  14. GM_addStyle(`
  15. #main-wrapper {
  16. min-width: 100%;
  17. }
  18.  
  19. #outer-wrapper {
  20. min-width: 100%;
  21. }
  22. #total-wrapper {
  23. min-width: 100%;
  24. }
  25. .post-body {
  26. min-width: 100%
  27. }
  28.  
  29. .nav,#middle-wrapper,.blog-pager
  30. {
  31. display: none;
  32. }
  33. #sidebar-wrapper,#rptxt,h2,#related-posts,#middle-wrapper,.blog-pager,#footer-links-wrap,.clear
  34. {
  35. display: none;
  36. }
  37.  
  38. `);
  39. }
  40.  
  41.  
  42. if (window.location.href.startsWith('https://www.micmicidol.club/20')) {
  43. GM_addStyle(`
  44. .post img {
  45. max-width:710px;
  46. min-width:310px;
  47. height:auto;
  48. }
  49. #interwebz-wrapper
  50. {
  51. display: none;
  52. }
  53. .hentry.post {
  54. }
  55.  
  56. `);
  57. }
  58.  
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement