The Sourcing Machine
Understand the technical background of software engineers and developers
Qu'est-ce que The Sourcing Machine ?
The Sourcing Machine est une extension Chrome développée par wassim.azirar, et sa fonction principale est "Understand the technical background of software engineers and developers".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension The Sourcing Machine
Téléchargez les fichiers d'extension The Sourcing Machine au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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]
Informations de Base sur l'Extension
Nom | The Sourcing Machine |
ID | kfhjhdahmpgbhagpbhihnbomjofinnin |
URL Officiel | https://chromewebstore.google.com/detail/the-sourcing-machine/kfhjhdahmpgbhagpbhihnbomjofinnin |
Description | Understand the technical background of software engineers and developers |
Taille du Fichier | 1.8 MB |
Nombre d'Installations | 144 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2020-11-16 |
Date de Publication | 2020-11-15 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | wassim.azirar |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.thesourcingmachine.com |
URL de la Page de Politique de Confidentialité | https://www.termsfeed.com/live/3b23929b-fee5-4976-b21e-ff91b16a565d |
Langues Prises en Charge | 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" } } |