RemNote Reader

Easily import book notes to RemNote.

RemNote Readerคืออะไร?

RemNote Reader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย allthingsremnote และคุณลักษณะหลักของมันคือ "Easily import book notes to RemNote."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RemNote Reader

ดาวน์โหลดไฟล์ส่วนขยาย 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 RemNote Reader
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"
    ]
}