Scribd Readwise Integration
Export Scribd and Everand highlights into Readwise
Scribd Readwise Integration là gì?
Scribd Readwise Integration là một tiện ích mở rộng Chrome được phát triển bởi https://micahlindley.com, và tính năng chính của nó là "Export Scribd and Everand highlights into Readwise".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Scribd Readwise Integration
Tải xuống các tệp mở rộng Scribd Readwise Integration dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Scribd Readwise Integration |
ID | ilpnpfninhcmhcnnecbaefciaaenkefo |
URL Chính Thức | https://chromewebstore.google.com/detail/scribd-readwise-integrati/ilpnpfninhcmhcnnecbaefciaaenkefo |
Mô tả | Export Scribd and Everand highlights into Readwise |
Kích Thước Tệp | 8.98 KB |
Số Lần Cài Đặt | 1,317 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2023-11-20 |
Ngày Phát Hành | 2022-12-30 |
Đánh Giá | 4.80/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | https://micahlindley.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://micahlindley.com |
URL Trang Trợ Giúp | https://github.com/micahlt/scribd-readwise-integration |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } } |