The Sourcing Machine

Understand the technical background of software engineers and developers

The Sourcing Machineคืออะไร?

The Sourcing Machine เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wassim.azirar และคุณลักษณะหลักของมันคือ "Understand the technical background of software engineers and developers"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย The Sourcing Machine

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    }
}