Scribd Readwise Integration
Export Scribd and Everand highlights into Readwise
Scribd Readwise Integrationとは何ですか?
Scribd Readwise Integrationはhttps://micahlindley.comによって開発されたChromeの拡張機能で、その主な機能は「Export Scribd and Everand highlights into Readwise」です。
拡張機能のスクリーンショット
Scribd Readwise Integration拡張機能のCRXファイルをダウンロード
Scribd Readwise Integration拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://micahlindley.com |
ヘルプページのURL | 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\/*" ] } } |