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.

Was ist Export Patreon Comments?

Export Patreon Comments ist eine Chrome-Erweiterung, die von markcnunes entwickelt wurde, und ihr Hauptmerkmal ist "Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page.".

Erweiterungsscreenshots

screenshot

Export Patreon Comments-Erweiterungs-CRX-Datei herunterladen

Laden Sie Export Patreon Comments-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Export Patreon Comments Export Patreon Comments
ID cbpcohjaihendbaaegnfobblodjodecg
Offizielle URL https://chromewebstore.google.com/detail/export-patreon-comments/cbpcohjaihendbaaegnfobblodjodecg
Beschreibung Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page.
Dateigröße 38.8 KB
Installationsanzahl 334
Aktuelle Version 1.0.2
Letztes Update 2022-05-10
Veröffentlichungsdatum 2020-04-28
Bewertung 4.00/5 Insgesamt 2 Bewertungen
Entwickler markcnunes
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/markcnunes/export-patreon-comments
Hilfeseite URL https://github.com/markcnunes/export-patreon-comments/pulls
Unterstützte Sprachen 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."
}