Created
December 4, 2014 15:00
-
-
Save akameco/8283a03dc5253bec90e1 to your computer and use it in GitHub Desktop.
コピペを楽に
This file contains 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 selector_fi | |
// @namespace https://twitter.com/akameco | |
// @include http://www.cue.im.dendai.ac.jp/* | |
// @include https://www.mlab.im.dendai.ac.jp/* | |
// @include http://www.mlab.im.dendai.ac.jp/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
(function () { | |
var a = document.getElementsByTagName('pre'); | |
var rng = document.createRange(); | |
var select = function (ev) { | |
rng.selectNodeContents(ev.target.nextSibling); | |
window.getSelection().addRange(rng); | |
}; | |
for (var i = 0; i < a.length; i++) { | |
var button = document.createElement('button'); | |
button.innerHTML = '選択'; | |
a[i].parentElement.insertBefore(button, a[i]); | |
button.style.padding = '3px 12px'; | |
button.style.cursor = 'pointer'; | |
button.addEventListener('click', function (event) { | |
select(event); | |
}, false); | |
} | |
}) (); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment