Linkedin Invitation Counter
This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday).
Linkedin Invitation Counter là gì?
Linkedin Invitation Counter là một tiện ích mở rộng Chrome được phát triển bởi https://icypeas.com, và tính năng chính của nó là "This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday).".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Linkedin Invitation Counter
Tải xuống các tệp mở rộng Linkedin Invitation Counter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Linkedin Invitation Counter |
ID | ilfnlmgghlkodollaeejjgainmkmihnf |
URL Chính Thức | https://chromewebstore.google.com/detail/linkedin-invitation-count/ilfnlmgghlkodollaeejjgainmkmihnf |
Mô tả | This extension counts the connection requests sent on LinkedIn every week (from Monday to Sunday). |
Kích Thước Tệp | 59.95 KB |
Số Lần Cài Đặt | 75 |
Phiên Bản Hiện Tại | 1 |
Cập Nhật Lần Cuối | 2023-12-19 |
Ngày Phát Hành | 2023-12-19 |
Nhà Phát Triển | https://icypeas.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/icypeas/LinkedIn-connection-counter |
URL Trang Trợ Giúp | https://github.com/icypeas/LinkedIn-connection-counter |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |