/*
* @title Instapaper's text view -> Instapaper's text view
* @description Instapaperテキストビュー内のリンクをInstapaperテキストビュー行きに変換する
* @include https://www.instapaper.com/read/*
* @include https://www.instapaper.com/text?u=*
* @license MIT License
*/
var aaa = document.getElementById('story').getElementsByTagName('a');
for (var i = 0; i < aaa.length; i++){
var a = aaa[i];
a.href = 'http://www.instapaper.com/text?u='+encodeURIComponent(a.href);
}