Removes furigana from copy and paste text.
Verze ze dne
// ==UserScript==
// @name jisho.org Remove Furigana From Copy Paste
// @namespace kaziocore
// @version 1.0
// @description Removes furigana from copy and paste text.
// @author https://github.com/philipnery
// @match https://jisho.org/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.addEventListener('copy', function (e) {
e.preventDefault();
var furiganas = document.getElementsByClassName('furigana');
for (let i = 0; i < furiganas.length; i++) {
furiganas[i].style.display = 'none';
}
e.clipboardData.setData('text', window.getSelection().toString());
for (let i = 0; i < furiganas.length; i++) {
furiganas[i].style.removeProperty('display');
}
});
})();