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 |
官方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 |
电子邮箱 | [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" ] } |