RemNote Reader
Easily import book notes to RemNote.
Apa itu RemNote Reader?
RemNote Reader adalah ekstensi Chrome yang dikembangkan oleh allthingsremnote, dan fitur utamanya adalah "Easily import book notes to RemNote.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi RemNote Reader
Unduh file ekstensi RemNote Reader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Easily import notes from Kindle and iBook to your RemNote knowledge base! Questions, Suggestions, Bugs? Send them to [email protected]!
Informasi Dasar Ekstensi
Nama | RemNote Reader |
ID | affhlohnkpfdgjejfaincpggoeapeafj |
URL Resmi | https://chromewebstore.google.com/detail/remnote-reader/affhlohnkpfdgjejfaincpggoeapeafj |
Deskripsi | Easily import book notes to RemNote. |
Ukuran File | 89.7 KB |
Jumlah Instalasi | 218 |
Versi Saat Ini | 1.01.01 |
Terakhir Diperbarui | 2021-06-02 |
Tanggal Publikasi | 2021-05-24 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | allthingsremnote |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://allthingsremnote.com |
Bahasa yang Didukung | 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" ] } |