Scribd Readwise Integration
Export Scribd and Everand highlights into Readwise
What is Scribd Readwise Integration?
Scribd Readwise Integration is a Chrome extension developed by https://micahlindley.com, and its main feature is "Export Scribd and Everand highlights into Readwise".
Extension Screenshots
Download Scribd Readwise Integration Extension CRX File
Download Scribd Readwise Integration extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Scribd Readwise Integration |
ID | ilpnpfninhcmhcnnecbaefciaaenkefo |
Official URL | https://chromewebstore.google.com/detail/scribd-readwise-integrati/ilpnpfninhcmhcnnecbaefciaaenkefo |
Description | Export Scribd and Everand highlights into Readwise |
File Size | 8.98 KB |
Installation Count | 1,317 |
Current Version | 1.3 |
Last Updated | 2023-11-20 |
Publish Date | 2022-12-30 |
Rating | 4.80/5 Total 5 Ratings |
Developer | https://micahlindley.com |
[email protected] | |
Payment Type | free |
Extension Website | https://micahlindley.com |
Help Page URL | https://github.com/micahlt/scribd-readwise-integration |
Supported Languages | 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\/*" ] } } |