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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}