Weibo for Chinese equal to Facebook + Twitter, there are lots of articles, far more than steemit.
The article on mobile is more beautiful and comfortable than on PC, so I redirect them to mobile mode anywhere.
However, there are two problems at least:
Readers need to click the "加载全文" button to get full text:
The title show on tab is "微博" (weibo) on any article.
My script aims to fix them.
Install Firefox/Chrome and Greasemonkey/Tampermonkey/Violentmonkey, and visit the script, install confirm.
Test URL: https://media.weibo.cn/article?id=2309351000454085965172930731
Full text will be auto loaded:
Tab title will show the article title:
By the way, this title fix can work with OneNote Clipper:
var runcount = 0;
function clickbutton() {
runcount = runcount + 1;
if(runcount>9){runcount=10;return;}
var buttonone = document.getElementsByClassName("m-font-arrow-down");
var titleone = document.getElementsByClassName("m-text-cut-2")[0].innerHTML;
var i;
for (i = 0; i < buttonone.length; i++) {
buttonone[i].click();
document.title = titleone;
}
}
setInterval(clickbutton, 1);
Direct simulation of click buttons doesn't work, so I use for loops;
There is only one "加载全文" button, so get it directly;
There are one or two or more title for different articles, so we need to get the first of them.
I'd like to add support Firefox for android. Everyone can pull request for that.