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.
Qu'est-ce que Export Patreon Comments ?
Export Patreon Comments est une extension Chrome développée par markcnunes, et sa fonction principale est "Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Export Patreon Comments
Téléchargez les fichiers d'extension Export Patreon Comments au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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/...".
Informations de Base sur l'Extension
Nom | Export Patreon Comments |
ID | cbpcohjaihendbaaegnfobblodjodecg |
URL Officiel | https://chromewebstore.google.com/detail/export-patreon-comments/cbpcohjaihendbaaegnfobblodjodecg |
Description | Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page. |
Taille du Fichier | 38.8 KB |
Nombre d'Installations | 334 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2022-05-10 |
Date de Publication | 2020-04-28 |
Évaluation | 4.00/5 Total 2 Évaluations |
Développeur | markcnunes |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/markcnunes/export-patreon-comments |
URL de la Page d'Aide | https://github.com/markcnunes/export-patreon-comments/pulls |
Langues Prises en Charge | 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." } |