モバイル版のツイートを表示するブックマークレット(ShowMobileTweet.js)
問題
- ツイートをブックマークしたいが、twitter.comではブックマークできない(ここでいうブックマークはTwitterが持っている機能のこと。ブックマークレットとは無関係)。
- ブックマークするためには mobile.twitter.com
でツイートを開き直さなければならない。
解決
- ShowMobileTweet.jsブックマークレットを使って、いまtwitter.comで見ているツイートをmobile.twitter.comで見ればいい。
コード
/*
* ShowMobileTweet.js
*
* When you see:
* https://twitter.com/hyuki/status/1079981317184315392
* Then jump to:
* https://mobile.twitter.com/hyuki/status/1079981317184315392
*/
function start() {
var url = location.href;
if (url.match(/^https?:\/\/(mobile\.)?twitter\.com\/(.+)/)) {
var tail = RegExp.$2;
location = 'https://mobile.twitter.com/' + tail;
} else {
alert("Twitter URL is not found.\n" + url);
}
}
start();
リンク