LinkedIn Extension

This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.

Qu'est-ce que LinkedIn Extension ?

LinkedIn Extension est une extension Chrome développée par LinkedIn, et sa fonction principale est "This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension LinkedIn Extension

Téléchargez les fichiers d'extension LinkedIn Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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]                    

Informations de Base sur l'Extension

Nom LinkedIn Extension LinkedIn Extension
ID meajfmicibjppdgbjfkpdikfjcflabpk
URL Officiel https://chromewebstore.google.com/detail/linkedin-extension/meajfmicibjppdgbjfkpdikfjcflabpk
Description This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.
Taille du Fichier 14.99 KB
Nombre d'Installations 450,530
Version Actuelle 1.32
Dernière Mise à Jour 2022-07-12
Date de Publication 2018-07-27
Évaluation 4.30/5 Total 364 Évaluations
Développeur LinkedIn
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.linkedin.com
URL de la Page d'Aide https://www.linkedin.com/legal/privacy-policy
URL de la Page de Politique de Confidentialité https://www.linkedin.com/legal/privacy-policy
Langues Prises en Charge 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"
}