このtampermonkeyスクリプトはcontentEditableを切り替えます
そのモードでは、標準のテキストエディターのように、目的のテキストに移動してキーボードで選択します
// ==UserScript==
// @name Toggle ContentEditable
// @namespace http://tampermonkey.net/
// @version 0.1
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var range;
document.addEventListener('keydown', function(e) {
if (e.keyCode == 12 && e.ctrlKey && e.altKey) // CTRL + ALT + NumPadCenter
{
if (!document.body.getAttribute("contenteditable"))
{
document.body.setAttribute("contenteditable", "true");
var selection = window.getSelection();
selection.removeAllRanges();
if (!range) range = document.createRange();
var el = document.elementFromPoint(window.innerWidth/2, window.innerHeight/2);
if (!el) el = document.body;
range.setStart(el, 0);
range.collapse(true);
selection.addRange(range);
}
}
else if (e.keyCode == 27 // ESC
&& document.body.getAttribute("contenteditable"))
document.body.removeAttribute("contenteditable");
});
})();
私は外国語で本を読むときに使用し、いくつかの単語を辞書に頻繁にコピー&ペーストする必要があります
Ctrl+Alt+NumPadCenter
オンにします
ESC
にするとオフになります(つまり、通常のブラウジングに戻ります)
キーの組み合わせを好みのものに変更するには、それぞれのコメントが横にある行を編集します。
ONにすると、スクリプトはブラウザウィンドウの中央にある要素(通常は段落)の先頭にキャレットを配置します。
グーグルは私をこのページに導き、提案された解決策は行き過ぎたように見えたので、ここにあります。