SoloStar
Supercharge your recruiting game.
Apa itu SoloStar?
SoloStar adalah ekstensi Chrome yang dikembangkan oleh https://solostar.io, dan fitur utamanya adalah "Supercharge your recruiting game.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi SoloStar
Unduh file ekstensi SoloStar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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]
Informasi Dasar Ekstensi
Nama | SoloStar |
ID | mpgifldcehdaecljlhiifnljeeganpmg |
URL Resmi | https://chromewebstore.google.com/detail/solostar/mpgifldcehdaecljlhiifnljeeganpmg |
Deskripsi | Supercharge your recruiting game. |
Ukuran File | 155 KB |
Jumlah Instalasi | 351 |
Versi Saat Ini | 0.0.26 |
Terakhir Diperbarui | 2024-01-18 |
Tanggal Publikasi | 2022-01-19 |
Penilaian | 5.00/5 Total 6 Penilaian |
Pengembang | https://solostar.io |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://solostar.io |
URL Halaman Bantuan | https://solostar.io/contact |
URL Halaman Kebijakan Privasi | https://solostar.io/privacy |
Bahasa yang Didukung | 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" } |