bilibili网站的综合热门、每周必看、入站必刷的卡片均为两列,总觉得看的很别扭,眼睛要蛇形去查看各个卡片内容,如下图所示
对于我而言,一般情况下还是会居中看东西的,而且像知乎和掘金基本都是将整体居中展示的
通过修改网页的CSS样式,就可以实现二列转一列的效果,如下图所示
// ==UserScript== | |
// @name Don't translate <pre> | |
// @namespace https://gist.github.com/vhxubo/a5ce83f3634d4073eaef52e6e0ce6822 | |
// @version 0.1 | |
// @description Don't translate <pre> by Google Translate | |
// @author vhxubo | |
// @match *://*/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant none | |
// ==/UserScript== |
const grade = [9, 10, 11, 12]; | |
const sequence = []; | |
for (let i = 0; i <= 30; i++) { | |
sequence.push(i); | |
} | |
const generate = (arr) => { | |
const obj = {}; | |
for (item of arr) | |
if (item < 100) { |
// ==UserScript== | |
// @name 复制 MarkDown 格式的超链接到剪贴板 | |
// @namespace https://gist.github.com/vhxubo/e94b0cceadf0291050f05ab1c0bb19c9 | |
// @homepage https://gist.github.com/vhxubo/e94b0cceadf0291050f05ab1c0bb19c9 | |
// @version 0.3 | |
// @description 快速复制 MarkDown 格式的超链接到剪贴板,格式: [标题](网址) | |
// @author Vhxubo | |
// @note 新增快捷键快速复制标题及链接:Alt + k,修改第22行的代码实现自定义,键值请参见:https://keycode.info/ | |
// @note 请勿同时使用其它快捷键插件/脚本 | |
// @match *://*/* |
// ==UserScript== | |
// @name FastGit | |
// @version 0.8 | |
// @description GitHub Clone or download、Releases 下载加速 | |
// @author Vhxubo | |
// @license MIT | |
// @icon https://github.githubassets.com/favicon.ico | |
// @homepage https://gist.github.com/vhxubo/d67fbd5bb3b7308b2e3690ca58e12c12 | |
// @namespace https://gist.github.com/vhxubo/d67fbd5bb3b7308b2e3690ca58e12c12 | |
// @match https://github.com/*/* |