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 |
官方網址 | 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 |
電子郵箱 | [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" ] } |