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 là gì?

Export Patreon Comments là một tiện ích mở rộng Chrome được phát triển bởi markcnunes, và tính năng chính của nó là "Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Export Patreon Comments

Tải xuống các tệp mở rộng Export Patreon Comments dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/...".                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Export Patreon Comments Export Patreon Comments
ID cbpcohjaihendbaaegnfobblodjodecg
URL Chính Thức https://chromewebstore.google.com/detail/export-patreon-comments/cbpcohjaihendbaaegnfobblodjodecg
Mô tả Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page.
Kích Thước Tệp 38.8 KB
Số Lần Cài Đặt 334
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2022-05-10
Ngày Phát Hành 2020-04-28
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển markcnunes
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/markcnunes/export-patreon-comments
URL Trang Trợ Giúp https://github.com/markcnunes/export-patreon-comments/pulls
Ngôn Ngữ Được Hỗ Trợ 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."
}