Linkedin Invitation Counter

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

Was ist Linkedin Invitation Counter?

Linkedin Invitation Counter ist eine Chrome-Erweiterung, die von https://icypeas.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday).".

Erweiterungsscreenshots

screenshot

Linkedin Invitation Counter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Linkedin Invitation Counter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Linkedin Invitation Counter Linkedin Invitation Counter
ID ilfnlmgghlkodollaeejjgainmkmihnf
Offizielle URL https://chromewebstore.google.com/detail/linkedin-invitation-count/ilfnlmgghlkodollaeejjgainmkmihnf
Beschreibung This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday).
Dateigröße 59.95 KB
Installationsanzahl 75
Aktuelle Version 1
Letztes Update 2023-12-19
Veröffentlichungsdatum 2023-12-19
Entwickler https://icypeas.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/icypeas/LinkedIn-connection-counter
Hilfeseite URL https://github.com/icypeas/LinkedIn-connection-counter
Unterstützte Sprachen 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"
    }
}