SciHive

Easily load any PDF to your SciHive library

Apa itu SciHive?

SciHive adalah ekstensi Chrome yang dikembangkan oleh https://scihive.org, dan fitur utamanya adalah "Easily load any PDF to your SciHive library".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi SciHive

Unduh file ekstensi SciHive dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama SciHive SciHive
ID dijdhkcfdaocpepndegmbkgphbpomdai
URL Resmi https://chromewebstore.google.com/detail/scihive/dijdhkcfdaocpepndegmbkgphbpomdai
Deskripsi Easily load any PDF to your SciHive library
Ukuran File 793 KB
Jumlah Instalasi 216
Versi Saat Ini 2.0.2
Terakhir Diperbarui 2020-10-25
Tanggal Publikasi 2020-03-01
Penilaian 5.00/5 Total 2 Penilaian
Pengembang https://scihive.org
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.scihive.org
Bahasa yang Didukung 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"
    ]
}