Linkedin Invitation Counter

This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday).

Qu'est-ce que Linkedin Invitation Counter ?

Linkedin Invitation Counter est une extension Chrome développée par https://icypeas.com, et sa fonction principale est "This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday).".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Linkedin Invitation Counter

Téléchargez les fichiers d'extension Linkedin Invitation Counter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Linkedin Invitation Counter Linkedin Invitation Counter
ID ilfnlmgghlkodollaeejjgainmkmihnf
URL Officiel https://chromewebstore.google.com/detail/linkedin-invitation-count/ilfnlmgghlkodollaeejjgainmkmihnf
Description This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday).
Taille du Fichier 59.95 KB
Nombre d'Installations 75
Version Actuelle 1
Dernière Mise à Jour 2023-12-19
Date de Publication 2023-12-19
Développeur https://icypeas.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/icypeas/LinkedIn-connection-counter
URL de la Page d'Aide https://github.com/icypeas/LinkedIn-connection-counter
Langues Prises en Charge 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"
    }
}