RemNote Reader
Easily import book notes to RemNote.
RemNote Reader là gì?
RemNote Reader là một tiện ích mở rộng Chrome được phát triển bởi allthingsremnote, và tính năng chính của nó là "Easily import book notes to RemNote.".
Ả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 RemNote Reader
Tải xuống các tệp mở rộng RemNote Reader 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
Easily import notes from Kindle and iBook to your RemNote knowledge base! Questions, Suggestions, Bugs? Send them to [email protected]!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | RemNote Reader |
ID | affhlohnkpfdgjejfaincpggoeapeafj |
URL Chính Thức | https://chromewebstore.google.com/detail/remnote-reader/affhlohnkpfdgjejfaincpggoeapeafj |
Mô tả | Easily import book notes to RemNote. |
Kích Thước Tệp | 89.7 KB |
Số Lần Cài Đặt | 218 |
Phiên Bản Hiện Tại | 1.01.01 |
Cập Nhật Lần Cuối | 2021-06-02 |
Ngày Phát Hành | 2021-05-24 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | allthingsremnote |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://allthingsremnote.com |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |