Minimal LinkedIn

Minimal Theme for LinkedIn

什么是Minimal LinkedIn?

Minimal LinkedIn是由mohit.mamoria开发的Chrome扩展程序,该扩展的主要功能是“Minimal Theme for LinkedIn”。

扩展截图

screenshot
screenshot
screenshot

下载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.                    

扩展基本信息

名称 Minimal LinkedIn Minimal LinkedIn
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
电子邮箱 [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"
    }
}