Browse LinkedIn in Dark Theme
This extension implements dark theme for LinkedIn
Browse LinkedIn in Dark Theme란 무엇입니까?
Browse LinkedIn in Dark Theme은(는) appsbay에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension implements dark theme for LinkedIn"입니다.
확장 프로그램 스크린샷
Browse LinkedIn in Dark Theme 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Have you always squinted your eyes whenever you browse through Linkedin? Have you always wished there is a way to enable a dark mode for your Linkedin page? Well, worry no more! With this extension, you can begin to consume your Linkedin in dark mode...you can even toggle it on and off. Now, we know that all it takes for this extension to break down is if the Linkedin team decided to change the structure of their front-end code. They can. And this is why the extension installed a toggle button in the first place. In case a page is broken, just toggle it off and notify the developer. He promise to fix it asap. Why, you can even tinker with the css/js code here and submit a pull request: https://github.com/wtoalabi/dark_link This is a labour of love. Enjoy and give a thumbs up.
확장 프로그램 기본 정보
이름 | |
ID | akekijglinhhpimighhmmbhkkleffcdn |
공식 URL | https://chrome.google.com/webstore/detail/browse-linkedin-in-dark-t/akekijglinhhpimighhmmbhkkleffcdn |
설명 | This extension implements dark theme for LinkedIn |
파일 크기 | 271 KB |
설치 횟수 | 790 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2020-11-26 |
출시 날짜 | 2020-11-26 |
평점 | 3.33/5 총 6 개의 평점 |
개발자 | appsbay |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Browse LinkedIn in Dark Theme", "description": "This extension implements dark theme for LinkedIn", "version": "0.0.3", "web_accessible_resources": [ "src\/assets\/images\/*" ], "browser_action": { "default_icon": "src\/assets\/images\/icon.png" }, "icons": { "16": "src\/assets\/images\/icon16.png", "48": "src\/assets\/images\/icon48.png", "128": "src\/assets\/images\/icon128.png" }, "content_scripts": [ { "css": [ "src\/assets\/app.css" ], "js": [ "src\/assets\/app.js" ], "matches": [ "https:\/\/www.linkedin.com\/*" ] } ] } |