Minimal LinkedIn

Minimal Theme for LinkedIn

Was ist Minimal LinkedIn?

Minimal LinkedIn ist eine Chrome-Erweiterung, die von mohit.mamoria entwickelt wurde, und ihr Hauptmerkmal ist "Minimal Theme for LinkedIn".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Minimal LinkedIn-Erweiterungs-CRX-Datei herunterladen

Laden Sie Minimal LinkedIn-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Minimal LinkedIn Minimal LinkedIn
ID iegmkckkmafanakechnfeonaagfbkipl
Offizielle URL https://chrome.google.com/webstore/detail/minimal-linkedin/iegmkckkmafanakechnfeonaagfbkipl
Beschreibung Minimal Theme for LinkedIn
Dateigröße 64.18 KB
Installationsanzahl 124
Aktuelle Version 2.1
Letztes Update 2023-06-05
Veröffentlichungsdatum 2022-11-30
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler mohit.mamoria
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://minimallinkedin.com
Hilfeseite URL https://minimallinkedin.com
Unterstützte Sprachen 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"
    }
}