SciHive
Easily load any PDF to your SciHive library
ما هو SciHive؟
SciHive هو إضافة Chrome تم تطويرها بواسطة https://scihive.org، والميزة الرئيسية لها هي "Easily load any PDF to your SciHive library".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة SciHive
قم بتنزيل ملفات الامتداد SciHive بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |