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.

Co to jest Export Patreon Comments?

Export Patreon Comments to rozszerzenie Chrome opracowane przez markcnunes, a jego główną funkcją jest „Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Export Patreon Comments

Pobierz pliki rozszerzeń Export Patreon Comments w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Export Patreon Comments Export Patreon Comments
ID cbpcohjaihendbaaegnfobblodjodecg
Oficjalny URL https://chromewebstore.google.com/detail/export-patreon-comments/cbpcohjaihendbaaegnfobblodjodecg
Opis Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page.
Rozmiar pliku 38.8 KB
Liczba instalacji 334
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2022-05-10
Data Publikacji 2020-04-28
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper markcnunes
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/markcnunes/export-patreon-comments
Adres URL Strony Pomocy https://github.com/markcnunes/export-patreon-comments/pulls
Obsługiwane Języki 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."
}