LinkedIn Extension

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

Cos'è LinkedIn Extension?

LinkedIn Extension è un'estensione di Chrome sviluppata da LinkedIn, e la sua funzione principale è "This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione LinkedIn Extension

Scarica i file di estensione LinkedIn Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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]                    

Informazioni di Base sull'Estensione

Nome LinkedIn Extension LinkedIn Extension
ID meajfmicibjppdgbjfkpdikfjcflabpk
URL Ufficiale https://chromewebstore.google.com/detail/linkedin-extension/meajfmicibjppdgbjfkpdikfjcflabpk
Descrizione This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.
Dimensione del File 14.99 KB
Conteggio Installazioni 450,530
Versione Corrente 1.32
Ultimo Aggiornamento 2022-07-12
Data di Pubblicazione 2018-07-27
Valutazione 4.30/5 Totale 364 Valutazioni
Sviluppatore LinkedIn
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.linkedin.com
URL della Pagina di Aiuto https://www.linkedin.com/legal/privacy-policy
URL della Pagina della Politica sulla Privacy https://www.linkedin.com/legal/privacy-policy
Lingue Supportate 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"
}