2copylet
@@ -1,16 +1,24 @@
/*
- * @title Hatena::LetのBookmarkletを表示する
- * @description スマートフォンでもコピーしやすくしたかった。連続で2回実行する必要があります。
+ * @title copylet
+ * @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/*
- * @license MIT License
- * @require
+ * @contributor mino90 http://let.hatelabo.jp/mino90/let/gYC-xYDKx6O-dA (Fork of)
+ * @license MIT License http://opensource.org/licenses/MIT
+ * @javascript_url
*/
-(function(){
-if(location.host=='let.hatelabo.jp'){
-location.href='http://let.st-hatelabo.com'+location.pathname
-}else if(location.host=='let.st-hatelabo.com'){
-var a=decodeURIComponent(document.getElementsByTagName('iframe')[0].contentWindow.document.getElementsByTagName('a')[0]);
-prompt(a,a)};
-})();
+// 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:"]');
+
+ window.prompt(raw.textContent, raw.href);
+ }
+})();
+
/*
* @title copylet
* @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
*/
// 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:"]');
window.prompt(raw.textContent, raw.href);
}
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。