Greasy Fork

Greasy Fork is available in English.

Clean Qwant

This scipt will result in a more minimalistic version of the Qwant website.

目前为 2019-06-07 提交的版本。查看 最新版本

// ==UserScript==
// @name     Clean Qwant
// @description This scipt will result in a more minimalistic version of the Qwant website.
// @include http*://*.qwant.*
// @version  1
// @run-at document-start

// @namespace http://greasyfork.icu/users/213191
// ==/UserScript==

//create a new style node
var style = document.createElement('style');
style.type = 'text/css';

//sets style content
style.innerHTML = '.verticals__container {display: none !important} .header_content.header_content--classic :not(.header__item--appmenu) {display: none} .header__item--appmenu * { display: block !important} .header__item--appmenu {border-left: none} footer {display: none}';

//append style to document
document.getElementsByTagName('head')[0].appendChild(style);