Comment Assistant In LinkedIn™
This is an AI assistant to generate comment by one click in LinkedIn™, powered by ChatGPT. Save time and increase your engagement.
Τι είναι το Comment Assistant In LinkedIn™;
Το Comment Assistant In LinkedIn™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον patrickoliver2653, και η κύρια λειτουργία του είναι "This is an AI assistant to generate comment by one click in LinkedIn™, powered by ChatGPT. Save time and increase your engagement.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Comment Assistant In LinkedIn™
Λήψη αρχείων επέκτασης Comment Assistant In LinkedIn™ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Our Comment Assistant will unlock the power of ChatGPT on LinkedIn Website. Click Ctrl/⌘+M to use Chat GPT on LinkedIn website anywhere. Save your time and increase engagement on the platform. This extension has a revolutionary new UI for using OpenAI's ChatGPT on LinkedIn sites. Here's how it works: 1. Select any online content on LinkedIn by your mouse 2. Click on Cmd+M (Mac) or Ctrl+M (Windows) to open extension popup 3. Choose prompt that you want to do with it (create a reply, comment, make it words limit, or add some fun), separate multi demand by "," 4. Click the switch icon, extension will automatically create you response for you. (PS: Please set your openai API-Key first, so our Assistant can work smoothly) Features: 1. Easily access LinkedIn by clicking on the icon in the toolbar. 2. Get comment from any pages on LinkedIn, such as group, event and post. 3. Run ChatGPT from the context menu. If you have any difficulties, please contact us via WhatsApp ID: +86 180 2303 4541 or email to [email protected] LinkedIn is a trademark of LinkedIn Inc., registered in the U.S. and other countries. This is an independent project and has no relationship to LinkedIn or LinkedIn Inc.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Comment Assistant In LinkedIn™ |
ID | kmchjegahcidgahijkjoaheobkjjgkfj |
Επίσημο URL | https://chromewebstore.google.com/detail/comment-assistant-in-link/kmchjegahcidgahijkjoaheobkjjgkfj |
Περιγραφή | This is an AI assistant to generate comment by one click in LinkedIn™, powered by ChatGPT. Save time and increase your engagement. |
Μέγεθος Αρχείου | 4.7 MB |
Αριθμός Εγκαταστάσεων | 936 |
Τρέχουσα Έκδοση | 1.2.12 |
Τελευταία Ενημέρωση | 2023-06-27 |
Ημερομηνία Δημοσίευσης | 2023-03-04 |
Αξιολόγηση | 4.56/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | patrickoliver2653 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://linkedradar.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://linkedradar.com |
URL της Σελίδας Πολιτικής Απορρήτου | https://linkedradar.com/linkedradar-private-policy |
Υποστηριζόμενες Γλώσσες | id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "description": "__MSG_extDesc__", "default_locale": "en", "icons": { "128": "icons\/logo.png" }, "background": { "service_worker": "js\/background.js" }, "action": { "default_title": "GPT Popup", "default_icon": { "128": "icons\/logo.png" }, "default_popup": "popup.html" }, "options_page": ".\/options.html", "commands": { "toggle_linkedInChatGPT": { "description": "Run linkedInChatGPT on the current page.", "suggested_key": { "chromeos": "Ctrl+M", "default": "Ctrl+M", "linux": "Ctrl+M", "mac": "Command+M", "windows": "Ctrl+M" } } }, "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/*" ], "js": [ "js\/content-script.js" ], "css": [], "run_at": "document_idle" }, { "matches": [ "*:\/\/*.openai.com\/*" ], "js": [ "js\/chatgpt-script.js" ], "css": [], "run_at": "document_idle" }, { "matches": [ "*:\/\/*.linkedradar.com\/*" ], "js": [ "js\/linkedradar-script.js" ], "css": [], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "icons\/*" ], "matches": [ "*:\/\/*.linkedin.com\/*", "*:\/\/*.openai.com\/*", "*:\/\/*.linkedradar.com\/*" ] } ], "permissions": [ "storage", "activeTab", "contextMenus" ], "host_permissions": [ "*:\/\/*.linkedin.com\/*", "*:\/\/*.openai.com\/*", "*:\/\/*.linkedradar.com\/*" ], "version": "1.2.12" } |