Export Patreon Comments

Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page.

Export Patreon Comments란 무엇입니까?

Export Patreon Comments은(는) markcnunes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page."입니다.

확장 프로그램 스크린샷

screenshot

Export Patreon Comments 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Use this extension on Patreon's posts page to export or show all comments. The options are available when you right-click on the page. It only works on posts pages.

The path should look something like this "patreon.com/posts/...".                    

확장 프로그램 기본 정보

이름 Export Patreon Comments Export Patreon Comments
ID cbpcohjaihendbaaegnfobblodjodecg
공식 URL https://chromewebstore.google.com/detail/export-patreon-comments/cbpcohjaihendbaaegnfobblodjodecg
설명 Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page.
파일 크기 38.8 KB
설치 횟수 334
현재 버전 1.0.2
최근 업데이트 2022-05-10
출시 날짜 2020-04-28
평점 4.00/5 총 2 개의 평점
개발자 markcnunes
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/markcnunes/export-patreon-comments
도움말 페이지 URL https://github.com/markcnunes/export-patreon-comments/pulls
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Export Patreon Comments",
    "version": "1.0.2",
    "host_permissions": [
        "*:\/\/*.patreon.com\/posts\/*"
    ],
    "permissions": [
        "contextMenus",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.patreon.com\/posts\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icon16.png",
                "icon48.png",
                "icon128.png"
            ],
            "matches": [
                "*:\/\/*.patreon.com\/*"
            ]
        }
    ],
    "description": "Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page."
}