Distraction free for Linkedin™
Hide distractions on Linkedin™ when you need to focus.
Distraction free for Linkedin™란 무엇입니까?
Distraction free for Linkedin™은(는) Matt Thurmond (Digital Detox NYC)에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide distractions on Linkedin™ when you need to focus."입니다.
확장 프로그램 스크린샷
Distraction free for Linkedin™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension hides potential distractions on LinkedIn™, including the newsfeed, suggested news, ads, and suggested people to follow. This lets you get in, get out, and get it done. This extension is free and opensource. It is is not affiliated with or produced by LinkedIn™. I've gotten a lot of value from LinkedIn™ in the past, and hope this extension will help you use it even more effectively. View the code on github: https://github.com/mthurmond/distraction-free-for-linkedin --> Try my other two extensions to remove distractions. Both are free & open source: - Hide My Email for Gmail™: https://chrome.google.com/webstore/detail/gmail-inbox-hider/koobmglbcddgeoopgphanmhjppfaehaa?hl=en&authuser=0 - Slack Hider: https://chrome.google.com/webstore/detail/slack-hider/ojfkenmmieminleikclgocedgpggeecp?hl=en&authuser=0
확장 프로그램 기본 정보
이름 | Distraction free for Linkedin™ |
ID | kigfnbfbpfpgphbocdkmeablbgdbpfke |
공식 URL | https://chromewebstore.google.com/detail/distraction-free-for-link/kigfnbfbpfpgphbocdkmeablbgdbpfke |
설명 | Hide distractions on Linkedin™ when you need to focus. |
파일 크기 | 42.38 KB |
설치 횟수 | 277 |
현재 버전 | 3.1 |
최근 업데이트 | 2023-06-24 |
출시 날짜 | 2021-11-14 |
평점 | 4.63/5 총 8 개의 평점 |
개발자 | Matt Thurmond (Digital Detox NYC) |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/mthurmond/distraction-free-for-linkedin |
도움말 페이지 URL | https://github.com/mthurmond/distraction-free-for-linkedin/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Distraction free for Linkedin\u2122", "version": "3.1", "description": "Hide distractions on Linkedin\u2122 when you need to focus.", "manifest_version": 3, "action": { "default_popup": "popup\/popup.html" }, "permissions": [], "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "run_at": "document_start", "js": [ "hider\/hider.js" ] } ], "web_accessible_resources": [ { "resources": [ "hider\/hider-main.css", "hider\/hider-switch.css", "hider\/hider-newsfeed.css", "hider\/hider-network.css", "hider\/hider-jobs.css", "hider\/favicon-no-messages.ico" ], "matches": [ "https:\/\/www.linkedin.com\/*" ] } ] } |