Linkedin Invitation Counter
This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday).
Τι είναι το Linkedin Invitation Counter;
Το Linkedin Invitation Counter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://icypeas.com, και η κύρια λειτουργία του είναι "This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday).".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Linkedin Invitation Counter
Λήψη αρχείων επέκτασης Linkedin Invitation Counter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
LinkedIn provides its users with a weekly quota for connection requests. Depending on the type of account, this weekly quota ranges from 80 to 100 connection requests. (If your account has just been created and is not "warm", the quota can be much more restrictive.) If you exceed your quota, LinkedIn will send you a first warning message, urging you to send fewer connection requests. If you persist, your account will be temporarily or permanently blocked. Therefore, it is important not to exceed this quota. However, when prospecting on LinkedIn, it is also in your interest not to underutilize your quota. We have created this extension to help you make the most of your quota while remaining compliant with Linkedin's rules.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Linkedin Invitation Counter |
ID | ilfnlmgghlkodollaeejjgainmkmihnf |
Επίσημο URL | https://chromewebstore.google.com/detail/linkedin-invitation-count/ilfnlmgghlkodollaeejjgainmkmihnf |
Περιγραφή | This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday). |
Μέγεθος Αρχείου | 59.95 KB |
Αριθμός Εγκαταστάσεων | 75 |
Τρέχουσα Έκδοση | 1 |
Τελευταία Ενημέρωση | 2023-12-19 |
Ημερομηνία Δημοσίευσης | 2023-12-19 |
Προγραμματιστής | https://icypeas.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/icypeas/LinkedIn-connection-counter |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/icypeas/LinkedIn-connection-counter |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Linkedin Invitation Counter", "version": "1", "description": "This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday).", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/*" ], "js": [ "content.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |