Live SHINE (beta)
This extension estimates the H-Index of Computer Science Conferences by filtering papers returned by Google Scholar.
Qu'est-ce que Live SHINE (beta) ?
Live SHINE (beta) est une extension Chrome développée par live.shine.app, et sa fonction principale est "This extension estimates the H-Index of Computer Science Conferences by filtering papers returned by Google Scholar.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Live SHINE (beta)
Téléchargez les fichiers d'extension Live SHINE (beta) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | obohlnnfogkjeknnfgcfmacjbgekmana |
URL Officiel | https://chrome.google.com/webstore/detail/live-shine-beta/obohlnnfogkjeknnfgcfmacjbgekmana |
Description | This extension estimates the H-Index of Computer Science Conferences by filtering papers returned by Google Scholar. |
Taille du Fichier | 512 KB |
Nombre d'Installations | 86 |
Version Actuelle | 0.0.9 |
Dernière Mise à Jour | 2016-11-30 |
Date de Publication | 2016-11-30 |
Développeur | live.shine.app |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://liveshine.wordpress.com/ |
Langues Prises en Charge | 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" ] } |