Minimal LinkedIn
Minimal Theme for LinkedIn
Minimal LinkedInとは何ですか?
Minimal LinkedInはmohit.mamoriaによって開発されたChromeの拡張機能で、その主な機能は「Minimal Theme for LinkedIn」です。
拡張機能のスクリーンショット
Minimal LinkedIn拡張機能のCRXファイルをダウンロード
Minimal LinkedIn拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Remove Linkedin clutter in one-click. Cut out distractions and focus on what brings you value.
Minimal Linkedin is a Chrome extension that allows you to clean up the Linkedin user interface. It allows customizations such as:
- Hide ads
- Simplify navigation menu
- Hide left and ride panes if not useful
- Hide the messaging windows
- Streamline Linkedin experience so you can focus on important features.
Minimal LinkedIn is a free app made by indie makers, and is not associated with LinkedIn Corporation. 拡張機能の基本情報
| 名前 | |
| ID | iegmkckkmafanakechnfeonaagfbkipl |
| 公式URL | https://chrome.google.com/webstore/detail/minimal-linkedin/iegmkckkmafanakechnfeonaagfbkipl |
| 説明 | Minimal Theme for LinkedIn |
| ファイルサイズ | 64.18 KB |
| インストール数 | 124 |
| 現在のバージョン | 2.1 |
| 最終更新日 | 2023-06-05 |
| 公開日 | 2022-11-30 |
| 評価 | 5.00/5 合計 3 レビュー |
| 開発者 | mohit.mamoria |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://minimallinkedin.com |
| ヘルプページのURL | https://minimallinkedin.com |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Minimal LinkedIn",
"description": "Minimal Theme for LinkedIn",
"version": "2.1",
"manifest_version": 3,
"icons": {
"128": "images\/icon.png"
},
"sandbox": {
"pages": [
"pages\/config.html"
]
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/*.linkedin.com\/*"
],
"js": [
"js\/handlers.js",
"js\/main.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"css\/minimal.css",
"pages\/config.html",
"partials\/nav.html",
"partials\/config-shortcut.html",
"images\/icon.svg",
"images\/icon-settings.svg",
"images\/nav-home.svg",
"images\/nav-network.svg",
"images\/nav-jobs.svg",
"images\/nav-messages.svg",
"images\/nav-notifications.svg"
],
"matches": [
"https:\/\/*.linkedin.com\/*"
]
}
],
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"*:\/\/*.linkedin.com\/*"
],
"action": {
"default_icon": "images\/icon.png",
"default_popup": "pages\/index.html"
}
} | |