LinkedIn Extension

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

什么是LinkedIn Extension?

LinkedIn Extension是由LinkedIn开发的Chrome扩展程序,该扩展的主要功能是“This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.”。

扩展截图

screenshot

下载LinkedIn Extension扩展crx文件

下载LinkedIn Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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]                    

扩展基本信息

名称 LinkedIn Extension LinkedIn Extension
ID meajfmicibjppdgbjfkpdikfjcflabpk
官方URL https://chromewebstore.google.com/detail/linkedin-extension/meajfmicibjppdgbjfkpdikfjcflabpk
简介 This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.
文件大小 14.99 KB
安装次数 450,530
当前版本 1.32
更新时间 2022-07-12
上架时间 2018-07-27
评分 4.30/5 共364次评分
开发者 LinkedIn
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.linkedin.com
帮助页面URL https://www.linkedin.com/legal/privacy-policy
隐私政策页面URL https://www.linkedin.com/legal/privacy-policy
支持的语言 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"
}