【スマホ用】プレーンテキストでコピペしたい。
by
tokyo_2020
2017-04-26 [2017/04/26 20:29:58]
サイト上のテキスト書式をリセットします。
@@ -26,12 +26,9 @@
body=body.replace(/([\r?\n])\1+/g,'\n\n');//改行コードの連続を(2個でも3個以上でも)それぞれ、¥n 2つにまとめる
body=body.replace(/\r?\n/g,'\n');//連続しない改行コードを¥n にまとめる
-//all:initial
-document.getElementsByTagName('body')[0].style.all='initial';
-
-body='<textarea style="margin:0;padding:6px;height:100%;font-size:16px;border-radius:0" readonly>'+body+'</textarea>';
-document.body.innerHTML=body;
+//css
+document.getElementsByTagName('body')[0].style.all='initial';//reset
document.getElementsByTagName('html')[0].style.width=(window.innerWidth)+'px';
document.getElementsByTagName('html')[0].style.height=window.innerHeight+'px';
@@ -40,14 +37,7 @@
document.getElementsByTagName('body')[0].style.height='100%';
document.getElementsByTagName('body')[0].style.overFlow='hidden';
-document.getElementsByTagName('textarea')[0].style.width=(window.innerWidth-20)+'px';
+body='<textarea style="margin:0;padding:6px;height:100%;font-size:16px;border-radius:0" readonly>'+body+'</textarea>';
+document.body.innerHTML=body;
-//stylesheet.deleteRule(0);
-for(i=0;i<document.styleSheets.item(0).cssRules.length;i++){
-//document.styleSheets.item(0).deleteRule(i);
-}
-//document.styleSheets.item(0).deleteRule(all);
-
-//console.log(document.styleSheets);
-//alert(document.styleSheets.item(0).cssRules.length);//41
-//console.log(typeof document(0));
+document.getElementsByTagName('textarea')[0].style.width=(window.innerWidth-20)+'px';
/*
* @title 【スマホ用】プレーンテキストでOK
* @description サイト上の文字列の書式をリセットします。
* @include http://*
* @license MIT License
* @require
@private
*/
body=document.body.innerHTML;
//gi削除
body=body.replace(/<(no)?script(.|\s)*?<\/(no)?script>/gi,'');//script
body=body.replace(/<style(.|\s)*?<\/(no)?style>/gi,'');//style
body=body.replace(/<aside(.|\s)*?<\/(no)?aside>/gi,'');//aside
//g削除
body=body.replace(/<(?!body)(.|\s)*?>/g,'');//body以外のタグ
body=body.replace(/\t/g,'');//タブ
//g半角スペース1つにまとめる
body=body.replace(/ /g,' ');//全角スペース
body=body.replace(/([ ])\1+/g,' ');//半角スペースの連続
//g改行コード
body=body.replace(/ \r?\n/g,'\n');//半角スペース+改行コードのみの行を ¥n に
body=body.replace(/([\r?\n])\1+/g,'\n\n');//改行コードの連続を(2個でも3個以上でも)それぞれ、¥n 2つにまとめる
body=body.replace(/\r?\n/g,'\n');//連続しない改行コードを¥n にまとめる
//css
document.getElementsByTagName('body')[0].style.all='initial';//reset
document.getElementsByTagName('html')[0].style.width=(window.innerWidth)+'px';
document.getElementsByTagName('html')[0].style.height=window.innerHeight+'px';
document.getElementsByTagName('body')[0].style.width='100%';
document.getElementsByTagName('body')[0].style.height='100%';
document.getElementsByTagName('body')[0].style.overFlow='hidden';
body='<textarea style="margin:0;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 です。