This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let progress, multi | |
// progress = true //注释这行将关闭今日进度 | |
// multi = true // 注释这行则只展示最新一条动态 | |
function splice(txt, start, delCount, newSubStr) { | |
return ( | |
txt.slice(0, start) + | |
(newSubStr ? newSubStr : '') + | |
txt.slice(start + Math.abs(delCount)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Flomo21 | |
// @version 0.1 | |
// @description Dark mode support for flomo.app | |
// @author GnimOay | |
// @match https://flomo.app/* | |
// ==/UserScript== | |
(function() { | |
'use strict'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--yellow: #ca9f5e; | |
--bg-card: #3e3e48; | |
--base: #333340; | |
--txt: #d9d9d9; | |
--border: #5d5d5d; | |
--green: #55bb8e; | |
} | |
.body { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.cMxGlg { | |
padding: 0; | |
} | |
.cMxGlg article { | |
/* background: red!important; */ | |
border-radius: 0; | |
padding: .8rem 1rem 0; | |
/* margin:0; */ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document domain("wolley.io") { | |
.header{ | |
height:auto; | |
box-shadow: #9b9b9b 0px -2px 6px 0px; | |
} | |
.header .inner{ | |
border:none; | |
} | |
.meta .by{ |