LinkedIn Extension
This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.
LinkedIn Extension là gì?
LinkedIn Extension là một tiện ích mở rộng Chrome được phát triển bởi LinkedIn, và tính năng chính của nó là "This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.".
Ả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 Extension
Tải xuống các tệp mở rộng LinkedIn Extension 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
Clicking on the extension's icon is also an easy way to take you directly to the LinkedIn website to view your new activity. Privacy Policy: https://www.linkedin.com/legal/privacy-policy By installing this extension, you agree to LinkedIn's User Agreement at https://www.linkedin.com/legal/user-agreement Please send any feedback to [email protected]
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | LinkedIn Extension |
ID | meajfmicibjppdgbjfkpdikfjcflabpk |
URL Chính Thức | https://chromewebstore.google.com/detail/linkedin-extension/meajfmicibjppdgbjfkpdikfjcflabpk |
Mô tả | This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn. |
Kích Thước Tệp | 14.99 KB |
Số Lần Cài Đặt | 450,530 |
Phiên Bản Hiện Tại | 1.32 |
Cập Nhật Lần Cuối | 2022-07-12 |
Ngày Phát Hành | 2018-07-27 |
Đánh Giá | 4.30/5 Tổng số 364 Đánh Giá |
Nhà Phát Triển | |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.linkedin.com |
URL Trang Trợ Giúp | https://www.linkedin.com/legal/privacy-policy |
URL Trang Chính Sách Bảo Mật | https://www.linkedin.com/legal/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LinkedIn Extension", "description": "This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.", "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "icons": { "128": "li-icon.png" }, "content_security_policy": "script-src 'self' https:\/\/platform.linkedin.com; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": { "19": "li-icon19.png", "38": "li-icon38.png", "16": "li-icon16.png", "32": "li-icon32.png" } }, "permissions": [ "https:\/\/www.linkedin.com\/*" ], "version": "1.32" } |