2copylet
@@ -8,8 +8,10 @@
* @javascript_url
*/
-// needs execute twice, single exec ver.
+// single exec ver.
// http://let.hatelabo.jp/noromanba/let/hLHUzoez66cW
+
+// needs execute twice
(() => {
if (location.hostname === 'let.hatelabo.jp') {
location.hostname = 'let.st-hatelabo.com';
@@ -18,8 +20,18 @@
if (location.hostname === 'let.st-hatelabo.com') {
const iframe = document.body.querySelector('iframe[src^="http://let.st-hatelabo.com"]');
const raw = iframe.contentDocument.querySelector('a[href^="javascript:"]');
+ // TBD readonly textarea
+ const input = document.createElement('input');
+ input.style.position = 'absolute';
+ input.style.top = '0';
+ input.style.left = '0';
+ input.style.width = '50%';
+
+ input.type = 'text';
+ input.value = raw.href;
- window.prompt(raw.textContent, raw.href);
+ document.body.appendChild(input);
+ input.select();
}
})();
/*
* @title 2copylet
* @description show minified code on Hatena::Let when 2-exec; for copy of mobile
* @include http://let.hatelabo.jp/*
* @include http://let.st-hatelabo.com/*
* @contributor mino90 http://let.hatelabo.jp/mino90/let/gYC-xYDKx6O-dA (Fork of)
* @license MIT License http://opensource.org/licenses/MIT
* @javascript_url
*/
// single exec ver.
// http://let.hatelabo.jp/noromanba/let/hLHUzoez66cW
// needs execute twice
(() => {
if (location.hostname === 'let.hatelabo.jp') {
location.hostname = 'let.st-hatelabo.com';
return;
}
if (location.hostname === 'let.st-hatelabo.com') {
const iframe = document.body.querySelector('iframe[src^="http://let.st-hatelabo.com"]');
const raw = iframe.contentDocument.querySelector('a[href^="javascript:"]');
// TBD readonly textarea
const input = document.createElement('input');
input.style.position = 'absolute';
input.style.top = '0';
input.style.left = '0';
input.style.width = '50%';
input.type = 'text';
input.value = raw.href;
document.body.appendChild(input);
input.select();
}
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。