The Sourcing Machine
Understand the technical background of software engineers and developers
什么是The Sourcing Machine?
The Sourcing Machine是由wassim.azirar开发的Chrome扩展程序,该扩展的主要功能是“Understand the technical background of software engineers and developers”。
扩展截图
下载The Sourcing Machine扩展crx文件
下载The Sourcing Machine扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension helps recruiters understand the technical background of software engineers. Features : - Summarize the LinkedIn profiles of developers. - Estimate developer salaries based on the StackOverFlow salary survey. - Analyze the technical skills of the developer. - Explain the profile in non-technical terms with enriched data. - Highlight a profile's contact information. The extension works only for LinkedIn profiles. Please send your comments to [email protected]
扩展基本信息
名称 | The Sourcing Machine |
ID | kfhjhdahmpgbhagpbhihnbomjofinnin |
官方URL | https://chromewebstore.google.com/detail/the-sourcing-machine/kfhjhdahmpgbhagpbhihnbomjofinnin |
简介 | Understand the technical background of software engineers and developers |
文件大小 | 1.8 MB |
安装次数 | 144 |
当前版本 | 1.0.0 |
更新时间 | 2020-11-16 |
上架时间 | 2020-11-15 |
评分 | 5.00/5 共5次评分 |
开发者 | wassim.azirar |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.thesourcingmachine.com |
隐私政策页面URL | https://www.termsfeed.com/live/3b23929b-fee5-4976-b21e-ff91b16a565d |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "short_name": "The Sourcing Machine", "name": "The Sourcing Machine", "description": "Understand the technical background of software engineers and developers", "version": "1.0.0", "permissions": [ "activeTab", "background", "declarativeContent", "https:\/\/www.linkedin.com\/in\/*" ], "icons": { "32": "images\/logo_32.png", "48": "images\/logo_48.png", "64": "images\/logo_64.png", "128": "images\/logo_128.png" }, "background": { "scripts": [ "js\/scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/in\/*" ], "js": [ "js\/scripts\/linkedin.js" ], "run_at": "document_end" } ], "page_action": { "default_icon": { "32": "images\/logo_32.png", "48": "images\/logo_48.png" }, "default_title": "LinkedIn Profile", "default_popup": "index.html" } } |