RemNote Reader
Easily import book notes to RemNote.
RemNote Readerとは何ですか?
RemNote Readerはallthingsremnoteによって開発されたChromeの拡張機能で、その主な機能は「Easily import book notes to RemNote.」です。
拡張機能のスクリーンショット
RemNote Reader拡張機能のCRXファイルをダウンロード
RemNote Reader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Easily import notes from Kindle and iBook to your RemNote knowledge base! Questions, Suggestions, Bugs? Send them to [email protected]!
拡張機能の基本情報
名前 | RemNote Reader |
ID | affhlohnkpfdgjejfaincpggoeapeafj |
公式URL | https://chromewebstore.google.com/detail/remnote-reader/affhlohnkpfdgjejfaincpggoeapeafj |
説明 | Easily import book notes to RemNote. |
ファイルサイズ | 89.7 KB |
インストール数 | 218 |
現在のバージョン | 1.01.01 |
最終更新日 | 2021-06-02 |
公開日 | 2021-05-24 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | allthingsremnote |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://allthingsremnote.com |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RemNote Reader", "description": "Easily import book notes to RemNote.", "version": "1.01.01", "manifest_version": 2, "browser_action": { "default_popup": "popup.html", "default_icon": "logo.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*.remnote.io\/*" ], "js": [ "remnoteInject.js" ], "all_frames": true, "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/cdn.jsdelivr.net; object-src 'self'", "permissions": [ "https:\/\/read.amazon.com\/*", "https:\/\/www.remnote.io\/*", "https:\/\/www.amazon.com\/*", "notifications", "activeTab", "storage" ] } |