SciHive

Easily load any PDF to your SciHive library

Vad är SciHive?

SciHive är en Chrome-tillägg utvecklad av https://scihive.org, och dess huvudfunktion är "Easily load any PDF to your SciHive library".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner SciHive-förlängningens CRX-fil

Ladda ner SciHive-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn SciHive SciHive
ID dijdhkcfdaocpepndegmbkgphbpomdai
Officiell webbadress https://chromewebstore.google.com/detail/scihive/dijdhkcfdaocpepndegmbkgphbpomdai
Beskrivning Easily load any PDF to your SciHive library
Filstorlek 793 KB
Antal Installationer 216
Aktuell Version 2.0.2
Senast Uppdaterad 2020-10-25
Publiceringsdatum 2020-03-01
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://scihive.org
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.scihive.org
Stödda Språk 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"
    ]
}