Just Remind Chrome Extension

Export your kindle highlights to justremind.app

Just Remind Chrome Extensionคืออะไร?

Just Remind Chrome Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย just.remind.extension และคุณลักษณะหลักของมันคือ "Export your kindle highlights to justremind.app"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Just Remind Chrome Extension

ดาวน์โหลดไฟล์ส่วนขยาย Just Remind Chrome Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Never forget about a book again with Just Remind!

The extension allows you to import your Kindle highlights to the Just Remind web app.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Just Remind Chrome Extension Just Remind Chrome Extension
ID iidldfielonfgiabbjjkbigjjclcpefa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/just-remind-chrome-extens/iidldfielonfgiabbjjkbigjjclcpefa
คำอธิบาย Export your kindle highlights to justremind.app
ขนาดไฟล์ 559 KB
จำนวนการติดตั้ง 47
เวอร์ชันปัจจุบัน 0.9.15
อัปเดตครั้งล่าสุด 2023-11-04
วันที่เผยแพร่ 2022-05-23
ผู้พัฒนา just.remind.extension
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://justremind.app/
URL หน้านโยบายความเป็นส่วนตัว https://justremind.app/privacy_policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Just Remind Chrome Extension",
    "version": "0.9.15",
    "description": "Export your kindle highlights to justremind.app",
    "manifest_version": 3,
    "author": "Loic Boset",
    "action": {
        "default_popup": "index.html",
        "default_title": "Just Remind Chrome Extension",
        "default_icon": {
            "16": ".\/images\/logo_16.png",
            "32": ".\/images\/logo_32.png",
            "48": ".\/images\/logo_48.png",
            "128": ".\/images\/logo_128.png"
        }
    },
    "icons": {
        "16": ".\/images\/logo_16.png",
        "32": ".\/images\/logo_32.png",
        "48": ".\/images\/logo_48.png",
        "128": ".\/images\/logo_128.png"
    },
    "background": {
        "service_worker": ".\/static\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage",
        "alarms",
        "offscreen",
        "contextMenus",
        "activeTab"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self'"
    },
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/justremind.app\/*",
            "http:\/\/localhost:3000\/api\/add_book",
            "https:\/\/justremind.app\/api\/add_book"
        ]
    },
    "host_permissions": [
        "http:\/\/localhost:3000\/*",
        "https:\/\/justremind.app\/*"
    ]
}