Skip to content

Instantly share code, notes, and snippets.

View TheFantasticWarrior's full-sized avatar

TFW TheFantasticWarrior

View GitHub Profile
@TheFantasticWarrior
TheFantasticWarrior / Video tool bookmarklet
Last active April 6, 2022 04:37
Video tool bookmarklet: Uses JavaScript to inject HTML buttons, for changing video speed or skipping ADs/openings/introductions/endings. add to bookmarks to use.
javascript:var%20video=document.querySelector("video");%20%20%20%20%20document.body.addEventListener("ratechange",%20function()%20{%20current.innerHTML=video.playbackRate;%20},%20true);%20%20%20%20%20%20var%20speed%20=%20document.createElement("div");%20%20%20%20%20speed.style%20=%20"background:rgba(255,255,255,0.9);top:0;right:0;position:fixed;z-index:%209999;";%20%20%20%20%20%20var%20left=document.createElement("div");%20%20%20%20%20left.style="display:%20flex;flex-direction:%20column;float:left;";%20%20%20%20%20var%20right=document.createElement("div");%20%20%20%20%20right.style="display:%20flex;flex-direction:%20column;";%20%20%20%20%20%20var%20reset%20=%20document.createElement("button");%20%20%20%20%20reset.innerHTML="%E9%87%8D%E7%BD%AE";%20%20%20%20%20reset.onclick=function(){video.playbackRate=1};%20%20%20%20%20%20var%20uspeed%20=%20document.createElement("button");%20%20%20%20%20uspeed.innerHTML="%E5%BF%AB";%20%20%20%20%20uspeed.onclick=function(){video.playbackRate=video.playbackRate+0.5};%20%20%20%
@TheFantasticWarrior
TheFantasticWarrior / JapaneseSearch.user.js
Last active November 19, 2024 13:14
Japanese dictionary search from highlight, with bookmarklet and userscript depend on which is preferred
// ==UserScript==
// @name japanese search
// @namespace https://gist.github.com/TheFantasticWarrior/a56b5c975818d9060ded8f8f3db07deb
// @version 0.2
// @description Press Ctrl+J(Command+J on Mac) to search highlighted Japanese words with jisho.org or Ctrl+Shift+J for pronunciation on forvo.com
// @author TFW
// @include *
// @grant none
// ==/UserScript==