How Does This Google/Chrome Extension Gets The F1000 Data?
1
0
Entering edit mode
12.0 years ago
xiaoronglv ▴ 20

the Paper Link for PubMed is a extension of chrome.

https://chrome.google.com/webstore/detail/kgdcooicefdfjcplcnehfpbngjccncko?utm_source=chrome-ntp-icon

This extension can fetch the data of Faculty 1000.

I would appreciate if anyone tell me the method to show the F1000 comments of citation.

Thanks

pubmed • 2.7k views
ADD COMMENT
1
Entering edit mode
11.8 years ago

As it says in the description

This extension is built using APIs from http://www.thepaperlink.com, http://www.pubmeder.com and PubMed eUtils.

So, you have to dig more by yourself in the API's to find the answer, how its linked to F1000. I just grabbed the latest source and search for the 'F1000' keyword and found in the contentscript.js javascript file, which I assume redirects the user to F1000 score url of the paper's PMID found using one of the code in paperlink's API.

if (r.item[i].f_v && r.item[i].fid) {
div_html += '<a id="thepaperlink_f' + pmid +
 '" class="thepaperlink-red" href="' + p + 'http://f1000.com/' +
 uneval_trim(r.item[i].fid) + '" target="_blank">f1000 score ' +
 uneval_trim(r.item[i].f_v) + '</a>';
}

Cheers

ADD COMMENT

Login before adding your answer.

Traffic: 1388 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6