4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Twitterのconsole.logを取り戻す

Last updated at Posted at 2019-06-17

console.logが出ない

どのツイッターのページでもいいので開発ツールを開いてconsole.logを実行して欲しい。

console.logの実行結果
> console.log("hello")
< undefined

なんとconsole.logの結果が出力されないではないか:rage::rage::rage:
ツイッター社はJavaScriptの標準関数を置き換えて開発者に嫌がらせしているようだ。1

console.logを取り戻す

console.logを取り戻すスニペット
(function regainConsoleLogFromTwitter() {
 if (!/^https?:\/\/twitter\.com/.test(document.URL)) return;

 var iframe = document.getElementsByTagName("iframe");
 if (iframe.length) {
  iframe = iframe[0];
 } else {
  iframe = document.createElement("iframe");
  document.body.insertAdjacentElement("beforeend", iframe);
 }
 console.log = iframe.contentWindow.console.log;
})();

iframeから正常なconsole.logを持ってきてconsole.logに上書きする。

console.logの実行結果
> console.log("hello")
  hello
< undefined

正常な動作を取り戻せた:heart_eyes:

  1. console.logの値がツイッター社にツイートされている疑いすらある。

4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?