Skip to content

Instantly share code, notes, and snippets.

@tambry
Last active August 11, 2022 07:01
Show Gist options
  • Save tambry/b7237a73b4af263c7bbce44ce132300b to your computer and use it in GitHub Desktop.
Save tambry/b7237a73b4af263c7bbce44ce132300b to your computer and use it in GitHub Desktop.
Tampermonkey script to fix Windows Japanese IME on JPDC (jpdb.io).
// ==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");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment