【スマホ用】プレーンテキストでコピペしたい。
by
tokyo_2020
2017-04-26 [2017/04/26 20:29:58]
サイト上のテキスト書式をリセットします。
@@ -9,10 +9,14 @@
var body=document.body.innerText;
body=body.replace(/\r?\n/g,'\n');//改行コードを統一
-body=body.replace(/[ ]{2,}/g,' ');//半角スペースの連続を一つにまとめる
-body=body.replace(/\t\n/g,'\n');//¥t対応
-body=body.replace(/ \n/g,'\n');//半角スペース+改行コードを ¥n に
+//spの連続を一つにまとめる
+body=body.replace(/[ \t ]{2,}/g,' ');
+
+// 対応
+
+//sp+改行コードを ¥n に
+body=body.replace(/[ \t ]\n/g,'\n');
//¥nの3つ以上の連続を(3個でも4個以上でも)¥n¥nとする。2個連続は2個連続のまま。
body=body.replace(/\n{3,}/g,'\n\n');
/*
* @title 【スマホ用】プレーンテキストでOK
* @description サイト上のテキスト書式をリセットします。
* @include http://*
* @license MIT License
* @require
@private
*/
var body=document.body.innerText;
body=body.replace(/\r?\n/g,'\n');//改行コードを統一
//spの連続を一つにまとめる
body=body.replace(/[ \t ]{2,}/g,' ');
// 対応
//sp+改行コードを ¥n に
body=body.replace(/[ \t ]\n/g,'\n');
//¥nの3つ以上の連続を(3個でも4個以上でも)¥n¥nとする。2個連続は2個連続のまま。
body=body.replace(/\n{3,}/g,'\n\n');
//css
var bodyStyle=document.getElementsByTagName('body')[0].style;
bodyStyle.all='initial';//reset
bodyStyle.width='100%';
bodyStyle.height='100%';
bodyStyle.overFlow='hidden';
document.getElementsByTagName('html')[0].style.width=window.innerWidth+'px';
document.getElementsByTagName('html')[0].style.height=window.innerHeight+'px';
body='<textarea style="padding:6px;height:100%;font-size:16px;border-radius:0" readonly>'+body+'</textarea>';
document.body.innerHTML=body;
document.getElementsByTagName('textarea')[0].style.width=(window.innerWidth-20)+'px';
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。