SciHive
Easily load any PDF to your SciHive library
What is SciHive?
SciHive is a Chrome extension developed by https://scihive.org, and its main feature is "Easily load any PDF to your SciHive library".
Extension Screenshots
Download SciHive Extension CRX File
Download SciHive extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | SciHive |
ID | dijdhkcfdaocpepndegmbkgphbpomdai |
Official URL | https://chromewebstore.google.com/detail/scihive/dijdhkcfdaocpepndegmbkgphbpomdai |
Description | Easily load any PDF to your SciHive library |
File Size | 793 KB |
Installation Count | 216 |
Current Version | 2.0.2 |
Last Updated | 2020-10-25 |
Publish Date | 2020-03-01 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://scihive.org |
[email protected] | |
Payment Type | free |
Extension Website | https://www.scihive.org |
Supported Languages | 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" ] } |