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.
Wat is Export Patreon Comments?
Export Patreon Comments is een Chrome-extensie ontwikkeld door markcnunes, en de belangrijkste functie is "Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page.".
Extensie Screenshots
Download het CRX-bestand van de extensie Export Patreon Comments
Download Export Patreon Comments-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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/...".
Basisinformatie over de Extensie
Naam | Export Patreon Comments |
ID | cbpcohjaihendbaaegnfobblodjodecg |
Officiële URL | https://chromewebstore.google.com/detail/export-patreon-comments/cbpcohjaihendbaaegnfobblodjodecg |
Beschrijving | Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page. |
Bestandsgrootte | 38.8 KB |
Aantal Installaties | 334 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2022-05-10 |
Publicatiedatum | 2020-04-28 |
Beoordeling | 4.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | markcnunes |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/markcnunes/export-patreon-comments |
Help Pagina-URL | https://github.com/markcnunes/export-patreon-comments/pulls |
Ondersteunde Talen | 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." } |