后来又发现immersive推荐的 kt 翻译器,他的面板更好,还能查词。
https://github.com/fishjar/kiss-translator
而且,开启kt翻译器的csp规则,还能绕过github对于跨域iframe的限制。
后来又发现immersive推荐的 kt 翻译器,他的面板更好,还能查词。
https://github.com/fishjar/kiss-translator
而且,开启kt翻译器的csp规则,还能绕过github对于跨域iframe的限制。
Workaround for Desktop / Allow the repository list to be expanded all the time
How to use :
It will toggle the pinning state of repository list view.
When the list view is pinned, it's styles are modified to make it non-modal and always visible.
global click_state := 0 | |
global leftDwn := 0 | |
GroupAdd, browser_gp, ahk_exe chrome.exe | |
Acc_Init(Function := "") { | |
Static h | |
If Not h | |
h:=DllCall("LoadLibrary","Str","oleacc","Ptr") | |
If Function |
#NoEnv | |
#MaxThreadsPerHotkey 2 | |
#SingleInstance Force | |
; 安装需求: https://github.com/telppa/PaddleOCR-AutoHotkey | |
; getSelectionCoords 改自社区脚本。 纯英文可用 Capture2Text | |
F2:: | |
;^Q:: |
// ==UserScript== | |
// @name SingleFile Pure - Pure html downloader | |
// @name:zh SingleFile Pure - 保存纯HTML | |
// @namespace https://gist.github.com/KnIfER | |
// @version 2.2.x | |
// @description 将当前网页保存为一个纯文本的.html网页文件,不保存二进制 | |
// @description:en Save webpages into one pure html file, without binary data. | |
// @author PY-DNG | |
// @license MIT | |
// @grant GM_registerMenuCommand |
// ==UserScript== | |
// @name 小说守护神 | |
// @namespace https://gist.github.com/KnIfER | |
// @description 首次访问小说网站时,自动开启以下两项设置:-- ①禁止跨域跳转 -- ② 自动开启无图模式 | |
// @version 1 | |
// @match *://*/* | |
// @run-at document-start | |
// @run-at document-end | |
// @grant GM_blockImage | |
// @grant GM_blockCorsJump |
#IfWinActive ahk_exe chrome.exe | |
$MButton:: | |
MouseGetPos, xpos, ypos | |
WinGetPos,x,y,w,h | |
if (xpos<w && xpos >= w-30 && ypos>0 && ypos<h) { | |
global tmp:=1 | |
Send +{LButton down} | |
} | |
else MouseClick, M |
package hunxiao; | |
import org.junit.Test; | |
import java.io.*; | |
import java.nio.charset.StandardCharsets; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Objects; |
// ==UserScript== | |
// @name B站学习机 | Bilibili+Youtube字幕全文阅读 | coursera-like subtitles fulltext reader | |
// @namespace https://gist.github.com/KnIfER/9e43ffa31c3b9831a500edf35595c1dc | |
// @version 4 | |
// @description 在线字幕阅读或下载,B站油管秒变cousera! - Read & learn subtitles full text online! | |
// @author KnIfER | |
// @match https://*.bilibili.com/video/* | |
// @match https://*.youtube.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com | |
// @license MIT |