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
nord-light: | |
name: "Nord Light" | |
author: Seviche CC <[email protected]> | |
font_face: "PingFangSC-Regular" | |
font_point: 15.0 | |
candidate_list_layout: linear | |
candidate_format: '%c %@ ' | |
text_orientation: horizontal | |
inline_preedit: true | |
translucency: true |
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
Vue.js 27 hrs 45 mins █████████████████░░░░ 81.0% | |
Go 3 hrs 21 mins ██░░░░░░░░░░░░░░░░░░░ 9.8% | |
JavaScript 2 hrs 9 mins █▎░░░░░░░░░░░░░░░░░░░ 6.3% | |
Bash 26 mins ▎░░░░░░░░░░░░░░░░░░░░ 1.3% | |
Other 17 mins ▏░░░░░░░░░░░░░░░░░░░░ 0.8% |
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 RSS+ : Show Site All RSS | |
// @name:zh RSS+ : 显示当前网站所有的 RSS | |
// @name:zh-CN RSS+ : 显示当前网站所有的 RSS | |
// @name:zh-TW RSS+ : 顯示當前網站所有的 RSS | |
// @name:ja RSS+ : 現在のサイトのRSSを表示 | |
// @name:ko RSS+ : 현재 사이트의 RSS 표시 | |
// @description Show All RSS Of The Site (If Any) | |
// @description:zh 显示当前网站的所有 RSS(如果有的话) | |
// @description:zh-CN 显示当前网站的所有 RSS(如果有的话) |
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
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Noto+Serif+SC:wght@300;400;500&display=swap"); | |
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"); | |
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&display=swap"); | |
:root { | |
--width-body: 900px; | |
--item-title-link-line-height: 1.23; | |
--entry-content-line-height: 1.5; | |
--item-title-link-font-size: 28px; | |
--font-size-smaller: 16px; |
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
// 数组转为对象 | |
// 完全看不懂!这里是抄小黄狗的😭 | |
var menuArr = [ | |
[1, "Area1", -1], | |
[2, "Area2", -1], | |
[3, "Area1-1", 1], | |
[4, "Area1-2", 1], | |
[5, "Area2-1", 2], | |
[6, "Area2-2", 2], |