LinkedIn Extension
This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.
LinkedIn Extensionคืออะไร?
LinkedIn Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย LinkedIn และคุณลักษณะหลักของมันคือ "This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LinkedIn Extension
ดาวน์โหลดไฟล์ส่วนขยาย LinkedIn Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | LinkedIn Extension |
ID | meajfmicibjppdgbjfkpdikfjcflabpk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/linkedin-extension/meajfmicibjppdgbjfkpdikfjcflabpk |
คำอธิบาย | This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn. |
ขนาดไฟล์ | 14.99 KB |
จำนวนการติดตั้ง | 450,530 |
เวอร์ชันปัจจุบัน | 1.32 |
อัปเดตครั้งล่าสุด | 2022-07-12 |
วันที่เผยแพร่ | 2018-07-27 |
คะแนน | 4.30/5 รวมทั้งหมด 364 คะแนน |
ผู้พัฒนา | |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.linkedin.com |
URL หน้าช่วยเหลือ | https://www.linkedin.com/legal/privacy-policy |
URL หน้านโยบายความเป็นส่วนตัว | https://www.linkedin.com/legal/privacy-policy |
ภาษาที่รองรับ | 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" } |