現在のドキュメントを文字コード自動判定で読み直す
by
unarist
2017-05-28 [2017/05/28 09:24:34]
charsetの指定がアレなサイトをMobileSafariで見たい時に
@@ -15,4 +15,6 @@
};
reader.readAsText(a.response, prompt("enc?", "Shift_JIS"))
};
-xhr.send();
+xhr.send();
+
+// javascript:(function(a,b){a.open("GET",location.href);a.responseType="blob";a.onload=function(){b.onload=function(){document.write(b.result)};b.readAsText(a.response,prompt("enc?","Shift_JIS"))};a.send()})(new XMLHttpRequest,new FileReader)
/*
* @title 現在のドキュメントをSJISで読み直す
* @include http://*
* @license MIT License
* @require
*/
const xhr = new XMLHttpRequest();
xhr.open("GET", location.href);
xhr.responseType = "blob";
xhr.onload = function() {
const reader = new FileReader();
reader.onload = function() {
document.write(b.result);
};
reader.readAsText(a.response, prompt("enc?", "Shift_JIS"))
};
xhr.send();
// javascript:(function(a,b){a.open("GET",location.href);a.responseType="blob";a.onload=function(){b.onload=function(){document.write(b.result)};b.readAsText(a.response,prompt("enc?","Shift_JIS"))};a.send()})(new XMLHttpRequest,new FileReader)
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。