Scribd Readwise Integration

Export Scribd and Everand highlights into Readwise

Co je Scribd Readwise Integration?

Scribd Readwise Integration je rozšíření Chrome vyvinuté https://micahlindley.com, a jeho hlavní funkcí je „Export Scribd and Everand highlights into Readwise“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Scribd Readwise Integration

Stáhněte si soubory rozšíření Scribd Readwise Integration ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Scribd Readwise Integration Scribd Readwise Integration
ID ilpnpfninhcmhcnnecbaefciaaenkefo
Oficiální URL https://chromewebstore.google.com/detail/scribd-readwise-integrati/ilpnpfninhcmhcnnecbaefciaaenkefo
Popis Export Scribd and Everand highlights into Readwise
Velikost souboru 8.98 KB
Počet instalací 1,317
Aktuální Verze 1.3
Poslední Aktualizace 2023-11-20
Datum Vydání 2022-12-30
Hodnocení 4.80/5 Celkem 5 Hodnocení
Vývojář https://micahlindley.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://micahlindley.com
URL Stránky Nápovědy https://github.com/micahlt/scribd-readwise-integration
Podporované Jazyky 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\/*"
        ]
    }
}