Last active
August 11, 2022 07:01
-
-
Save tambry/b7237a73b4af263c7bbce44ce132300b to your computer and use it in GitHub Desktop.
Revisions
-
tambry revised this gist
Aug 11, 2022 . No changes.There are no files selected for viewing
-
tambry created this gist
Aug 11, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ // ==UserScript== // @name JPDC (jpdb.io) search Windows Japanese IME fix // @namespace http://tampermonkey.net/ // @version 1.0 // @description Fixes Windows Japanese IME not working in the search bar on Chrome. // @author tambre // @match https://jpdb.io/* // @icon https://www.google.com/s2/favicons?sz=64&domain=jpdb.io // @grant none // ==/UserScript== 'use strict'; (function() { document.getElementById("q").setAttribute("type", "text"); })();