SoloStar
Supercharge your recruiting game.
Co to jest SoloStar?
SoloStar to rozszerzenie Chrome opracowane przez https://solostar.io, a jego główną funkcją jest „Supercharge your recruiting game.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia SoloStar
Pobierz pliki rozszerzeń SoloStar 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
SoloStar is a browser extension that enhances LinkedIn profiles and recruiter searches to help you unlock top talent.
Feedback or concerns? Contact us at [email protected] Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | mpgifldcehdaecljlhiifnljeeganpmg |
| Oficjalny URL | https://chromewebstore.google.com/detail/solostar/mpgifldcehdaecljlhiifnljeeganpmg |
| Opis | Supercharge your recruiting game. |
| Rozmiar pliku | 155 KB |
| Liczba instalacji | 351 |
| Aktualna Wersja | 0.0.26 |
| Ostatnia Aktualizacja | 2024-01-18 |
| Data Publikacji | 2022-01-19 |
| Ocena | 5.00/5 Łącznie 6 Oceny |
| Deweloper | https://solostar.io |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://solostar.io |
| Adres URL Strony Pomocy | https://solostar.io/contact |
| Adres URL Strony Polityki Prywatności | https://solostar.io/privacy |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "SoloStar",
"version": "0.0.26",
"description": "Supercharge your recruiting game.",
"author": "SoloStar",
"icons": {
"192": "assets\/logo192.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.linkedin.com\/talent\/*"
],
"js": [
"import-content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"action": {
"default_popup": "pages\/popup.html"
},
"web_accessible_resources": [
{
"resources": [
"pages\/sidebar.html"
],
"matches": [
"https:\/\/*.linkedin.com\/*"
]
},
{
"resources": [
"chunks\/*-*.js",
"content.js"
],
"matches": [
"https:\/\/*.linkedin.com\/*"
]
}
],
"options_page": "pages\/options.html"
} | |