HeaderHunter
Notifications for recruitment messages in HTTP headers
什麼是HeaderHunter?
HeaderHunter是由runeskjoldborgmadsen開發的Chrome擴展程式,該擴展的主要功能是“Notifications for recruitment messages in HTTP headers”。
擴展截圖
下載HeaderHunter擴展crx文件
下載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 |
ID | almeoedichpmgpjhobhenfacacpohbma |
官方網址 | 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" ] } ] } |