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开发的Chrome扩展程序,该扩展的主要功能是“This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday).”。

扩展截图

screenshot

下载Linkedin Invitation Counter扩展crx文件

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