HeaderHunter
Notifications for recruitment messages in HTTP headers
HeaderHunter là gì?
HeaderHunter là một tiện ích mở rộng Chrome được phát triển bởi runeskjoldborgmadsen, và tính năng chính của nó là "Notifications for recruitment messages in HTTP headers".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng HeaderHunter
Tải xuống các tệp mở rộng HeaderHunter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | HeaderHunter |
ID | almeoedichpmgpjhobhenfacacpohbma |
URL Chính Thức | https://chromewebstore.google.com/detail/headerhunter/almeoedichpmgpjhobhenfacacpohbma |
Mô tả | Notifications for recruitment messages in HTTP headers |
Kích Thước Tệp | 9.2 KB |
Số Lần Cài Đặt | 22 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2014-03-21 |
Ngày Phát Hành | 2014-03-21 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | runeskjoldborgmadsen |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |