SciHive

Easily load any PDF to your SciHive library

Cos'è SciHive?

SciHive è un'estensione di Chrome sviluppata da https://scihive.org, e la sua funzione principale è "Easily load any PDF to your SciHive library".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione SciHive

Scarica i file di estensione SciHive in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome SciHive SciHive
ID dijdhkcfdaocpepndegmbkgphbpomdai
URL Ufficiale https://chromewebstore.google.com/detail/scihive/dijdhkcfdaocpepndegmbkgphbpomdai
Descrizione Easily load any PDF to your SciHive library
Dimensione del File 793 KB
Conteggio Installazioni 216
Versione Corrente 2.0.2
Ultimo Aggiornamento 2020-10-25
Data di Pubblicazione 2020-03-01
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://scihive.org
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.scihive.org
Lingue Supportate 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"
    ]
}