StyleFixes

Miscellaneous fixes for various pages.

Per 31-05-2022. Zie de nieuwste versie.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey, Greasemonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Userscripts.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een gebruikersscriptbeheerder nodig.

(Ik heb al een user script manager, laat me het downloaden!)

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

(Ik heb al een beheerder - laat me doorgaan met de installatie!)

/* ==UserStyle==
@name               StyleFixes
@namespace          TheLastZombie/userstyles
@version            1.3.1
@description        Miscellaneous fixes for various pages.
@compatible         chrome
@compatible         edge
@compatible         firefox
@compatible         opera
@compatible         safari
@homepageURL        https://thelastzombie.github.io/userstyles/
@supportURL         https://github.com/TheLastZombie/userstyles/issues/new?labels=StyleFixes
@contributionURL    https://ko-fi.com/rcrsch
@contributionAmount €1.00
@author             TheLastZombie <[email protected]>
@icon               https://thelastzombie.github.io/userstyles/icons/StyleFixes.png
@copyright          2022, TheLastZombie (https://eric.jetzt/)
@license            MIT; https://thelastzombie.github.io/userstyles/LICENSE
@preprocessor       stylus
@var                checkbox fandom    "Fandom: Fix page offset"         1
@var                checkbox filecrypt "Filecrypt: Fix captcha size"     1
@var                checkbox imdb      "IMDb: Merge IMDb Scout lines"    1
@var                checkbox itch      "itch.io: Fix header width"       1
@var                checkbox sankaku   "Sankaku: Hide blacklisted posts" 1
@var                checkbox vrchat    "VRChat: Fix page height"         1
==/UserStyle== */

@-moz-document domain("fandom.com") {
  if fandom {
    .page-side-tools__wrapper {
      display: none;
    }
  }
}

@-moz-document domain("filecrypt.cc") {
  if filecrypt {
    #nc {
      width: initial;
      height: initial;
    }
  }
}

@-moz-document domain("imdb.com") {
  if imdb {
    .Hero__MediaContentContainer__Video-sc-kvkd64-2,
    #imdbscout_header {
      float: left;
    }
    #imdbscoutsecondbar_header {
      float: right;
    }
    #scout_rating_table {
      position: absolute;
      right: 0;
    }
  }
}

@-moz-document domain("itch.io") {
  if itch {
    .header_widget {
      width: 100%;
    }
  }
}

@-moz-document domain("chan.sankakucomplex.com") {
  if sankaku {
    .blacklisted {
      display: none !important;
    }
  }
}

@-moz-document url-prefix("https://vrchat.com/home")
{
  if vrchat {
    .content-scroll {
      height: auto !important;
    }
  }
}