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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |