RemNote Reader
Easily import book notes to RemNote.
Cos'è RemNote Reader?
RemNote Reader è un'estensione di Chrome sviluppata da allthingsremnote, e la sua funzione principale è "Easily import book notes to RemNote.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione RemNote Reader
Scarica i file di estensione RemNote Reader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Easily import notes from Kindle and iBook to your RemNote knowledge base! Questions, Suggestions, Bugs? Send them to [email protected]!
Informazioni di Base sull'Estensione
Nome | RemNote Reader |
ID | affhlohnkpfdgjejfaincpggoeapeafj |
URL Ufficiale | https://chromewebstore.google.com/detail/remnote-reader/affhlohnkpfdgjejfaincpggoeapeafj |
Descrizione | Easily import book notes to RemNote. |
Dimensione del File | 89.7 KB |
Conteggio Installazioni | 218 |
Versione Corrente | 1.01.01 |
Ultimo Aggiornamento | 2021-06-02 |
Data di Pubblicazione | 2021-05-24 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | allthingsremnote |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://allthingsremnote.com |
Lingue Supportate | 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" ] } |