SciHive

Easily load any PDF to your SciHive library

SciHiveとは何ですか?

SciHiveはhttps://scihive.orgによって開発されたChromeの拡張機能で、その主な機能は「Easily load any PDF to your SciHive library」です。

拡張機能のスクリーンショット

screenshot
screenshot

SciHive拡張機能のCRXファイルをダウンロード

SciHive拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 SciHive SciHive
ID dijdhkcfdaocpepndegmbkgphbpomdai
公式URL https://chromewebstore.google.com/detail/scihive/dijdhkcfdaocpepndegmbkgphbpomdai
説明 Easily load any PDF to your SciHive library
ファイルサイズ 793 KB
インストール数 216
現在のバージョン 2.0.2
最終更新日 2020-10-25
公開日 2020-03-01
評価 5.00/5 合計 2 レビュー
開発者 https://scihive.org
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.scihive.org
対応言語 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"
    ]
}