Live SHINE (beta)

This extension estimates the H-Index of Computer Science Conferences by filtering papers returned by Google Scholar.

¿Qué es Live SHINE (beta)?

Live SHINE (beta) es una extensión de Chrome desarrollada por live.shine.app, y su función principal es "This extension estimates the H-Index of Computer Science Conferences by filtering papers returned by Google Scholar.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Live SHINE (beta)

Descarga archivos de extensión Live SHINE (beta) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Live SHINE (beta) Live SHINE (beta)
ID obohlnnfogkjeknnfgcfmacjbgekmana
URL Oficial https://chrome.google.com/webstore/detail/live-shine-beta/obohlnnfogkjeknnfgcfmacjbgekmana
Descripción This extension estimates the H-Index of Computer Science Conferences by filtering papers returned by Google Scholar.
Tamaño del Archivo 512 KB
Cantidad de Instalaciones 86
Versión Actual 0.0.9
Última Actualización 2016-11-30
Fecha de Publicación 2016-11-30
Desarrollador live.shine.app
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://liveshine.wordpress.com/
Idiomas Soportados 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"
    ]
}