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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย markcnunes และคุณลักษณะหลักของมันคือ "Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Export Patreon Comments
ดาวน์โหลดไฟล์ส่วนขยาย 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." } |