Scribd Readwise Integration

Export Scribd and Everand highlights into Readwise

什么是Scribd Readwise Integration?

Scribd Readwise Integration是由https://micahlindley.com开发的Chrome扩展程序,该扩展的主要功能是“Export Scribd and Everand highlights into Readwise”。

扩展截图

screenshot

下载Scribd Readwise Integration扩展crx文件

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