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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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." } |