LinkedIn Years of Experience Checker
This extension checks the years of experience required for a job on LinkedIn.
Co to jest LinkedIn Years of Experience Checker?
LinkedIn Years of Experience Checker to rozszerzenie Chrome opracowane przez msr16npm, a jego główną funkcją jest „This extension checks the years of experience required for a job on LinkedIn.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia LinkedIn Years of Experience Checker
Pobierz pliki rozszerzeń LinkedIn Years of Experience Checker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension checks the years of experience required for a job on LinkedIn.
Podstawowe informacje o rozszerzeniu
Nazwa | LinkedIn Years of Experience Checker |
ID | donhgkmejidpmaaaegcncggmplnpfcob |
Oficjalny URL | https://chromewebstore.google.com/detail/linkedin-years-of-experie/donhgkmejidpmaaaegcncggmplnpfcob |
Opis | This extension checks the years of experience required for a job on LinkedIn. |
Rozmiar pliku | 197 KB |
Liczba instalacji | 356 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2023-07-18 |
Data Publikacji | 2023-07-18 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | msr16npm |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://github.com/MayoSR/CitizIn |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LinkedIn Years of Experience Checker", "description": "This extension checks the years of experience required for a job on LinkedIn.", "version": "1.0.0", "permissions": [ "activeTab", "https:\/\/www.linkedin.com\/*", "tabs" ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "96": "icons\/icon96.png" }, "background": { "service_worker": "extensions\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "extensions\/content.js" ] } ], "web_accessible_resources": [ { "resources": [ "stats.png" ], "matches": [ "https:\/\/www.linkedin.com\/*" ] } ] } |