SciHive

Easily load any PDF to your SciHive library

Was ist SciHive?

SciHive ist eine Chrome-Erweiterung, die von https://scihive.org entwickelt wurde, und ihr Hauptmerkmal ist "Easily load any PDF to your SciHive library".

Erweiterungsscreenshots

screenshot
screenshot

SciHive-Erweiterungs-CRX-Datei herunterladen

Laden Sie SciHive-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name SciHive SciHive
ID dijdhkcfdaocpepndegmbkgphbpomdai
Offizielle URL https://chromewebstore.google.com/detail/scihive/dijdhkcfdaocpepndegmbkgphbpomdai
Beschreibung Easily load any PDF to your SciHive library
Dateigröße 793 KB
Installationsanzahl 216
Aktuelle Version 2.0.2
Letztes Update 2020-10-25
Veröffentlichungsdatum 2020-03-01
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://scihive.org
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.scihive.org
Unterstützte Sprachen 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"
    ]
}