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 |
官方網址 | 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" } } |