Scite

scite allows users to see how a publication has been cited, providing the citation context and classification

什么是Scite?

Scite是由https://scite.ai开发的Chrome扩展程序,该扩展的主要功能是“scite allows users to see how a publication has been cited, providing the citation context and classification”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Scite扩展crx文件

下载Scite扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        scite is a platform that helps researchers better discover and evaluate scientific articles through Smart Citations–citations that display the context of the citation and describe whether the article provides supporting or contrasting evidence.

Code available: https://github.com/scitedotai/scite-extension                    

扩展基本信息

名称 Scite Scite
ID homifejhmckachdikhkgomachelakohh
官方URL https://chromewebstore.google.com/detail/scite/homifejhmckachdikhkgomachelakohh
简介 scite allows users to see how a publication has been cited, providing the citation context and classification
文件大小 778 KB
安装次数 124,267
当前版本 1.36.0
更新时间 2023-07-06
上架时间 2020-06-17
评分 4.00/5 共29次评分
开发者 https://scite.ai
电子邮箱 [email protected]
付费类型 free
扩展官网 https://scite.ai
帮助页面URL https://help.scite.ai/
隐私政策页面URL https://scite.ai/policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scite",
    "author": "Scite Inc.",
    "version": "1.36.0",
    "manifest_version": 2,
    "description": "scite allows users to see how a publication has been cited, providing the citation context and classification",
    "icons": {
        "16": "images\/icons\/16.png",
        "32": "images\/icons\/32.png",
        "48": "images\/icons\/48.png",
        "64": "images\/icons\/64.png",
        "128": "images\/icons\/128.png",
        "256": "images\/icons\/256.png",
        "512": "images\/icons\/512.png",
        "1024": "images\/icons\/1024.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "index.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.scite.ai\/*",
            "*:\/\/localhost\/*"
        ]
    },
    "permissions": [
        "https:\/\/api.scite.ai\/*",
        "contextMenus",
        "storage"
    ],
    "web_accessible_resources": [
        "fonts\/*"
    ]
}