🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

微博暗黑模式

微博搜索页面显示暗黑模式

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

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

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name         微博暗黑模式
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  微博搜索页面显示暗黑模式
// @description:en Weibo seach page use dark mode
// @author       夜雨
// @match        https://s.weibo.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=weibo.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
	'use strict';

	setTimeout(()=>{
		var html = document.querySelector("html")
		html.style.color="#ffffff"
		html.setAttribute("data-theme","dark")
		document.body.style.color="#ffffff"
		document.querySelector(".m-main-nav").setAttribute("style","color:#ffffff;background-color:#111")
		document.querySelectorAll(".main-side a").forEach(item=>{
			item.setAttribute("style","color:#ffffff;background-color:#111")
		})
		document.querySelectorAll("#pl_feedlist_index a").forEach(item=>{
			item.setAttribute("style","color:#ffffff;background-color:#111")
		})
        document.querySelectorAll("#pl_topic_header").forEach(item=>{
			item.setAttribute("style","color:#ffffff;background-color:#111")
		})
        document.querySelectorAll(".m-page").forEach(item=>{
			item.setAttribute("style","color:#ffffff;background-color:#111")
		})
         document.querySelectorAll(".m-error").forEach(item=>{
			item.setAttribute("style","color:#ffffff;background-color:#111")
		})
        document.querySelectorAll("textarea").forEach(item=>{
			item.setAttribute("style","color:#ffffff;background-color:#111")
		})


	}, 1000)

	// Your code here...
})();