RemNote Reader
Easily import book notes to RemNote.
What is RemNote Reader?
RemNote Reader is a Chrome extension developed by allthingsremnote, and its main feature is "Easily import book notes to RemNote.".
Extension Screenshots
Download RemNote Reader Extension CRX File
Download RemNote Reader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Easily import notes from Kindle and iBook to your RemNote knowledge base! Questions, Suggestions, Bugs? Send them to [email protected]!
Extension Basic Information
Name | RemNote Reader |
ID | affhlohnkpfdgjejfaincpggoeapeafj |
Official URL | https://chromewebstore.google.com/detail/remnote-reader/affhlohnkpfdgjejfaincpggoeapeafj |
Description | Easily import book notes to RemNote. |
File Size | 89.7 KB |
Installation Count | 218 |
Current Version | 1.01.01 |
Last Updated | 2021-06-02 |
Publish Date | 2021-05-24 |
Rating | 5.00/5 Total 1 Ratings |
Developer | allthingsremnote |
[email protected] | |
Payment Type | free |
Extension Website | https://allthingsremnote.com |
Supported Languages | 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" ] } |