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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Export Patreon Comments एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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." } |