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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}