您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
This scipt will result in a more minimalistic version of the Qwant website.
当前为
// ==UserScript== // @name Clean Qwant // @description This scipt will result in a more minimalistic version of the Qwant website. // @include http*://*.qwant.* // @version 1.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 = '.main-background-color, .wrapper, footer {background-color: #181a1b} .home__snippet__extension {display: none} .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);