LinkedIn Extension

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

Hvad er LinkedIn Extension?

LinkedIn Extension er en Chrome-udvidelse udviklet af LinkedIn, og dens hovedfunktion er "This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.".

Udvidelsesskærmbilleder

screenshot

Download LinkedIn Extension-udvidelses-CRX-fil

Download LinkedIn Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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]                    

Grundlæggende oplysninger om udvidelsen

Navn LinkedIn Extension LinkedIn Extension
ID meajfmicibjppdgbjfkpdikfjcflabpk
Officiel URL https://chromewebstore.google.com/detail/linkedin-extension/meajfmicibjppdgbjfkpdikfjcflabpk
Beskrivelse This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.
Filstørrelse 14.99 KB
Antal Installationer 450,530
Nuværende Version 1.32
Senest Opdateret 2022-07-12
Udgivelsesdato 2018-07-27
Bedømmelse 4.30/5 Samlet 364 Bedømmelser
Udvikler LinkedIn
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.linkedin.com
Hjælpeside-URL https://www.linkedin.com/legal/privacy-policy
URL til Fortrolighedspolitik Side https://www.linkedin.com/legal/privacy-policy
Understøttede Sprog 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"
}