Scribd Readwise Integration

Export Scribd and Everand highlights into Readwise

Что такое Scribd Readwise Integration?

Scribd Readwise Integration - это расширение Chrome, разработанное https://micahlindley.com, и его основная функция - "Export Scribd and Everand highlights into Readwise".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Scribd Readwise Integration

Скачайте файлы расширений Scribd Readwise Integration в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This is a Chrome extension with the ability to send highlights from a Scribd/Everand book to your Readwise account. Simply open the book, click the extension icon, and click the "Export to Readwise" button. In contrast, here's the way Readwise asks you to import from Scribd: https://help.readwise.io/article/83-how-do-i-import-highlights-from-scribd

This extension is open-sourced here: https://github.com/micahlt/scribd-readwise-integration                    

Основная информация о расширении

Название Scribd Readwise Integration Scribd Readwise Integration
ID ilpnpfninhcmhcnnecbaefciaaenkefo
Официальный URL https://chromewebstore.google.com/detail/scribd-readwise-integrati/ilpnpfninhcmhcnnecbaefciaaenkefo
Описание Export Scribd and Everand highlights into Readwise
Размер файла 8.98 KB
Количество установок 1,317
Текущая Версия 1.3
Последнее Обновление 2023-11-20
Дата публикации 2022-12-30
Рейтинг 4.80/5 Всего 5 оценок
Разработчик https://micahlindley.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://micahlindley.com
URL страницы помощи https://github.com/micahlt/scribd-readwise-integration
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scribd Readwise Integration",
    "description": "Export Scribd and Everand highlights into Readwise",
    "version": "1.3",
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "*:\/\/*.readwise.io\/*",
        "*:\/\/*.scribd.com\/*",
        "*:\/\/*.everand.com\/*"
    ],
    "permissions": [
        "cookies",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "export.js"
            ],
            "matches": [
                "*:\/\/*.scribd.com\/*",
                "*:\/\/*.everand.com\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.scribd.com\/*",
            "*:\/\/*.everand.com\/*"
        ]
    }
}