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]! 扩展基本信息
| 名称 | |
| ID | affhlohnkpfdgjejfaincpggoeapeafj |
| 官方URL | 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"
]
} | |