LinkedIn Extension
This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.
Wat is LinkedIn Extension?
LinkedIn Extension is een Chrome-extensie ontwikkeld door LinkedIn, en de belangrijkste functie is "This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.".
Extensie Screenshots
Download het CRX-bestand van de extensie LinkedIn Extension
Download LinkedIn Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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]
Basisinformatie over de Extensie
Naam | LinkedIn Extension |
ID | meajfmicibjppdgbjfkpdikfjcflabpk |
Officiële URL | https://chromewebstore.google.com/detail/linkedin-extension/meajfmicibjppdgbjfkpdikfjcflabpk |
Beschrijving | This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn. |
Bestandsgrootte | 14.99 KB |
Aantal Installaties | 450,530 |
Huidige Versie | 1.32 |
Laatst Bijgewerkt | 2022-07-12 |
Publicatiedatum | 2018-07-27 |
Beoordeling | 4.30/5 Totaal 364 Beoordelingen |
Ontwikkelaar | |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.linkedin.com |
Help Pagina-URL | https://www.linkedin.com/legal/privacy-policy |
URL van de Privacybeleid Pagina | https://www.linkedin.com/legal/privacy-policy |
Ondersteunde Talen | 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" } |