Scribd Readwise Integration
Export Scribd and Everand highlights into Readwise
ما هو Scribd Readwise Integration؟
Scribd Readwise Integration هو إضافة Chrome تم تطويرها بواسطة https://micahlindley.com، والميزة الرئيسية لها هي "Export Scribd and Everand highlights into Readwise".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Scribd Readwise Integration
قم بتنزيل ملفات الامتداد Scribd Readwise Integration بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a Chrome extension with the ability to send highlights from a Scribd/Everand book to your Readwise account. Simply open the book, click the extension icon, and click the "Export to Readwise" button. In contrast, here's the way Readwise asks you to import from Scribd: https://help.readwise.io/article/83-how-do-i-import-highlights-from-scribd This extension is open-sourced here: https://github.com/micahlt/scribd-readwise-integration
معلومات أساسية عن التمديد
الاسم | Scribd Readwise Integration |
ID | ilpnpfninhcmhcnnecbaefciaaenkefo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/scribd-readwise-integrati/ilpnpfninhcmhcnnecbaefciaaenkefo |
الوصف | Export Scribd and Everand highlights into Readwise |
حجم الملف | 8.98 KB |
عدد التثبيتات | 1,317 |
النسخة الحالية | 1.3 |
آخر تحديث | 2023-11-20 |
تاريخ النشر | 2022-12-30 |
تقييم | 4.80/5 مجموع تقييمات 5 |
المطور | https://micahlindley.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://micahlindley.com |
عنوان صفحة المساعدة | https://github.com/micahlt/scribd-readwise-integration |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Scribd Readwise Integration", "description": "Export Scribd and Everand highlights into Readwise", "version": "1.3", "action": { "default_popup": "popup\/popup.html", "default_icon": "icon.png" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/*.readwise.io\/*", "*:\/\/*.scribd.com\/*", "*:\/\/*.everand.com\/*" ], "permissions": [ "cookies", "scripting" ], "web_accessible_resources": [ { "resources": [ "export.js" ], "matches": [ "*:\/\/*.scribd.com\/*", "*:\/\/*.everand.com\/*" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.scribd.com\/*", "*:\/\/*.everand.com\/*" ] } } |