您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Change SubSplash notes into Dark Mode
// ==UserScript== // @name Subsplash Notes Dark Mode // @namespace https://greasyfork.org/en/users/119330-edward-sluder // @version 0.3 // @description Change SubSplash notes into Dark Mode // @author Edward Sluder // @match https://notes.subsplash.com/fill-in/view?page=* // @icon https://www.google.com/s2/favicons?sz=64&domain=subsplash.com // @license MIT // @grant none // ==/UserScript== (function() { 'use strict'; console.log("still working"); // Create our own styleSheet var sheet = (function() { // Create the <style> tag var style = document.createElement("style"); // WebKit hack :( style.appendChild(document.createTextNode("")); // Add the <style> element to the page document.head.appendChild(style); return style.sheet; })(); // Add our style rules. sheet.insertRule( 'body { background-color: black }' ); sheet.insertRule( 'body { color: #aeaeae }' ); sheet.insertRule( '.notes ng-scope {background-color:black }' ); sheet.insertRule( 'div.info__title.ng-binding {color: white}' ); })();