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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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 개의 평점 |
개발자 | |
이메일 | [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" } |