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).」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } } |