Scribd Readwise Integration
Export Scribd and Everand highlights into Readwise
O que é Scribd Readwise Integration?
Scribd Readwise Integration é uma extensão do Chrome desenvolvida por https://micahlindley.com, e sua principal característica é "Export Scribd and Everand highlights into Readwise".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Scribd Readwise Integration
Baixe arquivos de extensão Scribd Readwise Integration no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Scribd Readwise Integration |
ID | ilpnpfninhcmhcnnecbaefciaaenkefo |
URL Oficial | https://chromewebstore.google.com/detail/scribd-readwise-integrati/ilpnpfninhcmhcnnecbaefciaaenkefo |
Descrição | Export Scribd and Everand highlights into Readwise |
Tamanho do Arquivo | 8.98 KB |
Contagem de Instalações | 1,317 |
Versão Atual | 1.3 |
Última Atualização | 2023-11-20 |
Data de Publicação | 2022-12-30 |
Classificação | 4.80/5 Total de 5 Avaliações |
Desenvolvedor | https://micahlindley.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://micahlindley.com |
URL da Página de Ajuda | https://github.com/micahlt/scribd-readwise-integration |
Idiomas Suportados | 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\/*" ] } } |