The Sourcing Machine
Understand the technical background of software engineers and developers
The Sourcing Machine क्या है?
The Sourcing Machine wassim.azirar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Understand the technical background of software engineers and developers"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में The Sourcing Machine एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |