Linkedin Invitation Counter
This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday).
Linkedin Invitation Counterคืออะไร?
Linkedin Invitation Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://icypeas.com และคุณลักษณะหลักของมันคือ "This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday)."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Linkedin Invitation Counter
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } } |