LinkedIn Extension
This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.
Apa itu LinkedIn Extension?
LinkedIn Extension adalah ekstensi Chrome yang dikembangkan oleh LinkedIn, dan fitur utamanya adalah "This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi LinkedIn Extension
Unduh file ekstensi LinkedIn Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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]
Informasi Dasar Ekstensi
Nama | LinkedIn Extension |
ID | meajfmicibjppdgbjfkpdikfjcflabpk |
URL Resmi | https://chromewebstore.google.com/detail/linkedin-extension/meajfmicibjppdgbjfkpdikfjcflabpk |
Deskripsi | This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn. |
Ukuran File | 14.99 KB |
Jumlah Instalasi | 450,530 |
Versi Saat Ini | 1.32 |
Terakhir Diperbarui | 2022-07-12 |
Tanggal Publikasi | 2018-07-27 |
Penilaian | 4.30/5 Total 364 Penilaian |
Pengembang | |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.linkedin.com |
URL Halaman Bantuan | https://www.linkedin.com/legal/privacy-policy |
URL Halaman Kebijakan Privasi | https://www.linkedin.com/legal/privacy-policy |
Bahasa yang Didukung | 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" } |