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ファイルをダウンロード
Browse LinkedIn in Dark Theme拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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\/*" ] } ] } |