SoloStar
Supercharge your recruiting game.
什么是SoloStar?
SoloStar是由https://solostar.io开发的Chrome扩展程序,该扩展的主要功能是“Supercharge your recruiting game.”。
扩展截图
下载SoloStar扩展crx文件
下载SoloStar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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] 扩展基本信息
| 名称 | |
| ID | mpgifldcehdaecljlhiifnljeeganpmg |
| 官方URL | https://chromewebstore.google.com/detail/solostar/mpgifldcehdaecljlhiifnljeeganpmg |
| 简介 | Supercharge your recruiting game. |
| 文件大小 | 155 KB |
| 安装次数 | 351 |
| 当前版本 | 0.0.26 |
| 更新时间 | 2024-01-18 |
| 上架时间 | 2022-01-19 |
| 评分 | 5.00/5 共6次评分 |
| 开发者 | https://solostar.io |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://solostar.io |
| 帮助页面URL | https://solostar.io/contact |
| 隐私政策页面URL | https://solostar.io/privacy |
| 支持的语言 | 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"
} | |