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.”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 Live SHINE (beta) Live SHINE (beta)
ID obohlnnfogkjeknnfgcfmacjbgekmana
官方網址 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"
    ]
}