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