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.”。
扩展截图
下载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 |
ID | cbpcohjaihendbaaegnfobblodjodecg |
官方URL | 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." } |