LinkedIn Extension
This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.
Co je LinkedIn Extension?
LinkedIn Extension je rozšíření Chrome vyvinuté LinkedIn, a jeho hlavní funkcí je „This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření LinkedIn Extension
Stáhněte si soubory rozšíření LinkedIn Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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]
Základní Informace o Rozšíření
Název | LinkedIn Extension |
ID | meajfmicibjppdgbjfkpdikfjcflabpk |
Oficiální URL | https://chromewebstore.google.com/detail/linkedin-extension/meajfmicibjppdgbjfkpdikfjcflabpk |
Popis | This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn. |
Velikost souboru | 14.99 KB |
Počet instalací | 450,530 |
Aktuální Verze | 1.32 |
Poslední Aktualizace | 2022-07-12 |
Datum Vydání | 2018-07-27 |
Hodnocení | 4.30/5 Celkem 364 Hodnocení |
Vývojář | |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.linkedin.com |
URL Stránky Nápovědy | https://www.linkedin.com/legal/privacy-policy |
URL Stránky Zásad Ochrany Soukromí | https://www.linkedin.com/legal/privacy-policy |
Podporované Jazyky | 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" } |