Just Remind Chrome Extension

Export your kindle highlights to justremind.app

Just Remind Chrome Extension란 무엇입니까?

Just Remind Chrome Extension은(는) just.remind.extension에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export your kindle highlights to justremind.app"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Just Remind Chrome Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}