SciHive

Easily load any PDF to your SciHive library

O que é SciHive?

SciHive é uma extensão do Chrome desenvolvida por https://scihive.org, e sua principal característica é "Easily load any PDF to your SciHive library".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão SciHive

Baixe arquivos de extensão SciHive 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

                        SciHive is a free collaborative research tool that enables you to easily find, comment, and ask questions on the latest research papers available on arXiv. 

Our Chrome extension opens any Arxiv PDF automatically in SciHive or load any other PDF to it.                    

Informações Básicas da Extensão

Nome SciHive SciHive
ID dijdhkcfdaocpepndegmbkgphbpomdai
URL Oficial https://chromewebstore.google.com/detail/scihive/dijdhkcfdaocpepndegmbkgphbpomdai
Descrição Easily load any PDF to your SciHive library
Tamanho do Arquivo 793 KB
Contagem de Instalações 216
Versão Atual 2.0.2
Última Atualização 2020-10-25
Data de Publicação 2020-03-01
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://scihive.org
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.scihive.org
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SciHive",
    "version": "2.0.2",
    "description": "Easily load any PDF to your SciHive library",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "author": "SciHive",
    "background": {
        "scripts": [
            "background.bundle.js",
            "hot-reload.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon_on_32.png",
        "default_title": "Add the current paper to your SciHive library"
    },
    "icons": {
        "128": "icon_on_128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*.pdf",
                "https:\/\/*\/*.pdf"
            ],
            "exclude_matches": [
                "https:\/\/www.scihive.org\/*",
                "http:\/\/www.scihive.org\/*"
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png"
    ]
}