Minimal LinkedIn
Minimal Theme for LinkedIn
Wat is Minimal LinkedIn?
Minimal LinkedIn is een Chrome-extensie ontwikkeld door mohit.mamoria, en de belangrijkste functie is "Minimal Theme for LinkedIn".
Extensie Screenshots
Download het CRX-bestand van de extensie Minimal LinkedIn
Download Minimal LinkedIn-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Minimal LinkedIn |
ID | iegmkckkmafanakechnfeonaagfbkipl |
Officiële URL | https://chrome.google.com/webstore/detail/minimal-linkedin/iegmkckkmafanakechnfeonaagfbkipl |
Beschrijving | Minimal Theme for LinkedIn |
Bestandsgrootte | 64.18 KB |
Aantal Installaties | 124 |
Huidige Versie | 2.1 |
Laatst Bijgewerkt | 2023-06-05 |
Publicatiedatum | 2022-11-30 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | mohit.mamoria |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://minimallinkedin.com |
Help Pagina-URL | https://minimallinkedin.com |
Ondersteunde Talen | 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" } } |