HeaderHunter

Notifications for recruitment messages in HTTP headers

HeaderHunterคืออะไร?

HeaderHunter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย runeskjoldborgmadsen และคุณลักษณะหลักของมันคือ "Notifications for recruitment messages in HTTP headers"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย HeaderHunter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        HeaderHunter is a simple Google Chrome extension that will show a small alert whenever you visit a website that returns recruitment messages in the HTTP headers.

A few companies started adding recruitment messages via "X-Recruiting", "X-Hacker", "X-Hire" or "X-Jobs" HTTP headers. Without any centralized job site, this extension turns your browser into a job listing app, by reading these headers when they are present. All web admins have to do is to include one of these headers with a custom message to the user.

You can contribute to the development of this extension on GitHub:
https://github.com/runemadsen/headerhunter                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ HeaderHunter HeaderHunter
ID almeoedichpmgpjhobhenfacacpohbma
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/headerhunter/almeoedichpmgpjhobhenfacacpohbma
คำอธิบาย Notifications for recruitment messages in HTTP headers
ขนาดไฟล์ 9.2 KB
จำนวนการติดตั้ง 22
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2014-03-21
วันที่เผยแพร่ 2014-03-21
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา runeskjoldborgmadsen
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HeaderHunter",
    "description": "Notifications for recruitment messages in HTTP headers",
    "manifest_version": 2,
    "version": "1.0",
    "permissions": [
        "webRequest",
        "tabs",
        "storage",
        "*:\/\/*\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "inject.css"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}