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
Eメール [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"
}