Live SHINE (beta)
This extension estimates the H-Index of Computer Science Conferences by filtering papers returned by Google Scholar.
什么是Live SHINE (beta)?
Live SHINE (beta)是由live.shine.app开发的Chrome扩展程序,该扩展的主要功能是“This extension estimates the H-Index of Computer Science Conferences by filtering papers returned by Google Scholar.”。
扩展截图
下载Live SHINE (beta)扩展crx文件
下载Live SHINE (beta)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Scientific conferences and their impact metrics are important for the Computer Science community. However, currently, there is no tool that is universally accepted for accessing their citation-based impact metrics, since the tools that provide such information diverge from each other. We claim that the divergence between metrics calculated by different tools is, to a great extent, due to the divergence between the list of papers they consider. In fact, in many cases, existing tools require users to write a query to retrieve the papers of the conference she is interested in knowing the impact metric. This may represent a problem since it may require the user anticipate all the ways that the names of the conference can take on citations of its papers. To tackle this problem, we developed SHINE, a tool for evaluating impact metrics of Computer Science conferences and events alike. It calculates impact metrics of a conference through the aggregation of citations to each paper that appeared in the conference. Let V be a conference and let Pi be a list of the papers published in V in the year i. Each paper pij in Pi has a number C(pij) of citations obtained from Google Scholar. The number C(pij), used for computing the impact of V (for instance, using the H-index), is obtained by matching each specific paper pij, its title, authors, and year, with the results of a query sent to GS. By doing so, we seek to avoid the inherent ambiguity of querying Google Scholar by venues name or acronym. Notice that this requires taking the lists of papers of each edition of the conferences of interest from such sources as DBLP, IEEE Explore, ACM DL. Besides these, the Special Commissions of SBC (Brazilian Computer Society) have also indicated other sources. The first version of SHINE (A Simple H-INdex Estimator) is available at http://shine.icomp.ufam.edu.br, and it is now frozen. This blog covers the new version, we call Live SHINE. For this version, we slightly change the acronym to mean now: A Simple and Humble Impact Index Estimator, to reflect the fact that we want to include other metrics besides H-index. SHINE is totally non-profit and open to all CS community. Indeed, it has gained popularity among the Brazilian community since its public release about. Importantly, researchers are constantly interacting with our team to point such problems as missing conferences, omissions in lists of papers, etc. SHINE was also adopted by international communities in Italy, Spain and Chile.
扩展基本信息
名称 | |
ID | obohlnnfogkjeknnfgcfmacjbgekmana |
官方URL | https://chrome.google.com/webstore/detail/live-shine-beta/obohlnnfogkjeknnfgcfmacjbgekmana |
简介 | This extension estimates the H-Index of Computer Science Conferences by filtering papers returned by Google Scholar. |
文件大小 | 512 KB |
安装次数 | 86 |
当前版本 | 0.0.9 |
更新时间 | 2016-11-30 |
上架时间 | 2016-11-30 |
开发者 | live.shine.app |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://liveshine.wordpress.com/ |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Live SHINE (beta)", "short_name": "Live SHINE", "homepage_url": "https:\/\/liveshine.wordpress.com\/", "description": "This extension estimates the H-Index of Computer Science Conferences by filtering papers returned by Google Scholar.", "version": "0.0.9", "browser_action": { "default_icon": "icon-19.png", "default_title": "Live Shine" }, "background": { "scripts": [ "myscript.js" ] }, "content_security_policy": "script-src 'self' https:\/\/scholar.google.com.br; object-src 'self'", "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "http:\/\/shine.icomp.ufam.edu.br\/*", "http:\/\/scholar.google.com\/*", "https:\/\/scholar.google.com\/*", "https:\/\/ajax.googleapis.com\/", "https:\/\/scholar.google.com.br\/*", "http:\/\/scholar.google.com.br\/*", "http:\/\/localhost\/testscholar\/*", "https:\/\/localhost\/testscholar\/*" ], "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "web_accessible_resources": [ "logo.png", "icon-search.png" ] } |