SciHive
Easily load any PDF to your SciHive library
什麼是SciHive?
SciHive是由https://scihive.org開發的Chrome擴展程式,該擴展的主要功能是“Easily load any PDF to your SciHive library”。
擴展截圖
下載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 |
ID | dijdhkcfdaocpepndegmbkgphbpomdai |
官方網址 | 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 |
電子郵箱 | [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" ] } |