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 파일 다운로드

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

확장 프로그램 사용 설명서

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