Thanks to @jogerj and @PrimeCicada for the method! Original script: https://gist.github.com/jogerj/0339e61a92e0de2e360c5212a94854e8
打开 Powershell, 复制粘贴下面的命令:
国际服:
Thanks to @jogerj and @PrimeCicada for the method! Original script: https://gist.github.com/jogerj/0339e61a92e0de2e360c5212a94854e8
打开 Powershell, 复制粘贴下面的命令:
国际服:
// ==UserScript== | |
// @name Bilibili宽屏模式On | |
// @namespace https://gist.github.com/biuuu/ | |
// @match https://www.bilibili.com/* | |
// @grant none | |
// @version 1.3 | |
// @author biuuu | |
// @run-at document-end | |
// @description 保持bilibili播放器宽屏模式 | |
// ==/UserScript== |
import CSV from 'papaparse' | |
const trim = (str) => { | |
if (!str) return '' | |
let _str = str.replace(/[\u0020]+$/g, '') | |
return _str.replace(/^[\u0020]+/g, '') | |
} | |
const replaceWrap = (text) => { | |
if (typeof text === 'string') { |
function start (tw, th) { | |
const resizeCount = 10 | |
const resize = () => { | |
let ih = window.outerHeight | |
let iw = window.outerWidth | |
const h = document.body.clientHeight | |
const w = document.body.clientWidth | |
const oh = th - h | |
const ow = tw - w |
// ==UserScript== | |
// @name 自动复制救援码 | |
// @namespace https://gist.github.com/biuuu | |
// @version 0.7 | |
// @description 自动复制最左边第一个救援码,调整顺序后刷新网页生效 | |
// @author biuuu | |
// @include /^https?:\/\/gbf\.life.*$/ | |
// @include /^https?:\/\/gbs\.eriri\.net.*$/ | |
// @include /^https?:\/\/eriri\.net\/gbs.*$/ | |
// @include /^https?:\/\/.+-raidfinder\.herokuapp\.com.*$/ |
// ==UserScript== | |
// @name NGA论坛碧蓝幻想表情包 | |
// @namespace https://gist.github.com/biuuu | |
// @version 0.0.6 | |
// @description 果てしない空の彼方 煌めく星たちの記憶 | |
// @author 露莉亚 | |
// @match *://bbs.ngacn.cc/post.php* | |
// @match *://ngabbs.com/post.php* | |
// @match *://nga.178.com/post.php* | |
// @match *://bbs.nga.cn/post.php* |
// ==UserScript== | |
// @name 碧蓝幻想小工具 | |
// @namespace https://gist.github.com/biuuu | |
// @version 0.1.2 | |
// @description 无 | |
// @icon http://game.granbluefantasy.jp/favicon.ico | |
// @author biuuu | |
// @match *://game.granbluefantasy.jp/* | |
// @match *://gbf.game.mbga.jp/* | |
// @run-at document-body |
// ==UserScript== | |
// @name anime1.me网页全屏 | |
// @namespace https://gist.github.com/biuuu/dcfdb0d561ea12f12d0912cada5ce121 | |
// @version 0.1.1 | |
// @description 123 | |
// @icon https://anime1.me/favicon.ico | |
// @author biuuu | |
// @match https://anime1.me/* | |
// @run-at document-end | |
// @grant none |
var k5p = {} | |
function cuu5z() { | |
var AR5W = function(hW9N) { | |
if (hW9N < -128) { | |
return AR5W(128 - (-128 - hW9N)) | |
} else if (hW9N >= -128 && hW9N <= 127) { | |
return hW9N | |
} else if (hW9N > 127) { | |
return AR5W(-129 + hW9N - 127) |
import Delta from 'quill-delta' | |
import _escape from 'lodash/escape' | |
const blockKeys = [ | |
'code-block', 'header', 'blockquote', 'align', 'list', 'direction', 'indent' | |
] | |
const blockValues = { | |
'code-block': { | |
isTag: true, |