Scribd Readwise Integration
Export Scribd and Everand highlights into Readwise
Co to jest Scribd Readwise Integration?
Scribd Readwise Integration to rozszerzenie Chrome opracowane przez https://micahlindley.com, a jego główną funkcją jest „Export Scribd and Everand highlights into Readwise”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Scribd Readwise Integration
Pobierz pliki rozszerzeń Scribd Readwise Integration w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Scribd Readwise Integration |
ID | ilpnpfninhcmhcnnecbaefciaaenkefo |
Oficjalny URL | https://chromewebstore.google.com/detail/scribd-readwise-integrati/ilpnpfninhcmhcnnecbaefciaaenkefo |
Opis | Export Scribd and Everand highlights into Readwise |
Rozmiar pliku | 8.98 KB |
Liczba instalacji | 1,317 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2023-11-20 |
Data Publikacji | 2022-12-30 |
Ocena | 4.80/5 Łącznie 5 Oceny |
Deweloper | https://micahlindley.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://micahlindley.com |
Adres URL Strony Pomocy | https://github.com/micahlt/scribd-readwise-integration |
Obsługiwane Języki | 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\/*" ] } } |