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文件

下載Export Patreon Comments擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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."
}