Minimal LinkedIn

Minimal Theme for LinkedIn

Minimal LinkedIn란 무엇입니까?

Minimal LinkedIn은(는) mohit.mamoria에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Minimal Theme for LinkedIn"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Minimal LinkedIn 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}