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.”。
擴展截圖
下載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] 擴展基本資訊
| 名稱 | |
| ID | meajfmicibjppdgbjfkpdikfjcflabpk |
| 官方網址 | 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 次評分 |
| 開發者 | |
| 電子郵箱 | [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"
} | |