Linkedin Invitation Counter

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

Linkedin Invitation Counter क्या है?

Linkedin Invitation Counter https://icypeas.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Linkedin Invitation Counter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    }
}