SciHive
Easily load any PDF to your SciHive library
Hvad er SciHive?
SciHive er en Chrome-udvidelse udviklet af https://scihive.org, og dens hovedfunktion er "Easily load any PDF to your SciHive library".
Udvidelsesskærmbilleder
Download SciHive-udvidelses-CRX-fil
Download SciHive-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | SciHive |
ID | dijdhkcfdaocpepndegmbkgphbpomdai |
Officiel URL | https://chromewebstore.google.com/detail/scihive/dijdhkcfdaocpepndegmbkgphbpomdai |
Beskrivelse | Easily load any PDF to your SciHive library |
Filstørrelse | 793 KB |
Antal Installationer | 216 |
Nuværende Version | 2.0.2 |
Senest Opdateret | 2020-10-25 |
Udgivelsesdato | 2020-03-01 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | https://scihive.org |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.scihive.org |
Understøttede Sprog | 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" ] } |