CleanFork

Clean up greasyfork with some css edits

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         CleanFork
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Clean up greasyfork with some css edits
// @author       codingMASTER398
// @match        *://greasyfork.org/*
// @icon         https://www.google.com/s2/favicons?domain=greasyfork.org
// @grant        none
// @run-at       document-start
// ==/UserScript==

css = `
.list-option-group .list-current {
   border-left: none;
   box-shadow: none;
    margin: none;
    padding: .4em 1em .4em calc(1em - 3px);
    /* background: linear-gradient(#fff,#eee); */
}
body {
    font-family: monospace;
}
.list-option-group ul {
    list-style-type: none;
    padding: 1em 0;
    box-shadow: none;
    border: none;
    background-color: #fff;
}
#main-header {
    background-color: black;
    background-image: none;
    box-shadow: 0 0 15px 2px rgb(0 0 0 / 50%);
    padding: .25em 0;
}
li {
    box-shadow: none;
    border: none;
}
`
var styleSheet = document.createElement("style")
styleSheet.type = "text/css"
styleSheet.innerText = css
document.head.appendChild(styleSheet)