SoloStar
Supercharge your recruiting game.
Hvad er SoloStar?
SoloStar er en Chrome-udvidelse udviklet af https://solostar.io, og dens hovedfunktion er "Supercharge your recruiting game.".
Udvidelsesskærmbilleder
Download SoloStar-udvidelses-CRX-fil
Download SoloStar-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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] Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | mpgifldcehdaecljlhiifnljeeganpmg |
| Officiel URL | https://chromewebstore.google.com/detail/solostar/mpgifldcehdaecljlhiifnljeeganpmg |
| Beskrivelse | Supercharge your recruiting game. |
| Filstørrelse | 155 KB |
| Antal Installationer | 351 |
| Nuværende Version | 0.0.26 |
| Senest Opdateret | 2024-01-18 |
| Udgivelsesdato | 2022-01-19 |
| Bedømmelse | 5.00/5 Samlet 6 Bedømmelser |
| Udvikler | https://solostar.io |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://solostar.io |
| Hjælpeside-URL | https://solostar.io/contact |
| URL til Fortrolighedspolitik Side | https://solostar.io/privacy |
| Understøttede Sprog | 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"
} | |