Scite

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

O que é Scite?

Scite é uma extensão do Chrome desenvolvida por https://scite.ai, e sua principal característica é "scite allows users to see how a publication has been cited, providing the citation context and classification".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Scite

Baixe arquivos de extensão Scite no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Scite Scite
ID homifejhmckachdikhkgomachelakohh
URL Oficial https://chromewebstore.google.com/detail/scite/homifejhmckachdikhkgomachelakohh
Descrição scite allows users to see how a publication has been cited, providing the citation context and classification
Tamanho do Arquivo 778 KB
Contagem de Instalações 124,267
Versão Atual 1.36.0
Última Atualização 2023-07-06
Data de Publicação 2020-06-17
Classificação 4.00/5 Total de 29 Avaliações
Desenvolvedor https://scite.ai
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://scite.ai
URL da Página de Ajuda https://help.scite.ai/
URL da Página de Política de Privacidade https://scite.ai/policy
Idiomas Suportados 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\/*"
    ]
}