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] 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |