SciHive
Easily load any PDF to your SciHive library
Wat is SciHive?
SciHive is een Chrome-extensie ontwikkeld door https://scihive.org, en de belangrijkste functie is "Easily load any PDF to your SciHive library".
Extensie Screenshots
Download het CRX-bestand van de extensie SciHive
Download SciHive-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | SciHive |
ID | dijdhkcfdaocpepndegmbkgphbpomdai |
Officiële URL | https://chromewebstore.google.com/detail/scihive/dijdhkcfdaocpepndegmbkgphbpomdai |
Beschrijving | Easily load any PDF to your SciHive library |
Bestandsgrootte | 793 KB |
Aantal Installaties | 216 |
Huidige Versie | 2.0.2 |
Laatst Bijgewerkt | 2020-10-25 |
Publicatiedatum | 2020-03-01 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://scihive.org |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.scihive.org |
Ondersteunde Talen | 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" ] } |