This file contains hidden or 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 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== |
This file contains hidden or 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
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% |