HeaderHunter
Notifications for recruitment messages in HTTP headers
HeaderHunter क्या है?
HeaderHunter runeskjoldborgmadsen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Notifications for recruitment messages in HTTP headers"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में HeaderHunter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक 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" ] } ] } |