HeaderHunter
Notifications for recruitment messages in HTTP headers
O que é HeaderHunter?
HeaderHunter é uma extensão do Chrome desenvolvida por runeskjoldborgmadsen, e sua principal característica é "Notifications for recruitment messages in HTTP headers".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão HeaderHunter
Baixe arquivos de extensão HeaderHunter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | HeaderHunter |
ID | almeoedichpmgpjhobhenfacacpohbma |
URL Oficial | https://chromewebstore.google.com/detail/headerhunter/almeoedichpmgpjhobhenfacacpohbma |
Descrição | Notifications for recruitment messages in HTTP headers |
Tamanho do Arquivo | 9.2 KB |
Contagem de Instalações | 22 |
Versão Atual | 1.0 |
Última Atualização | 2014-03-21 |
Data de Publicação | 2014-03-21 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | runeskjoldborgmadsen |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |