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 |
Eメール | [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." } |