HN Who's Hiring Job Finder

This extension allows you to search for multiple keywords on job listings in Hacker News' Who's Hiring thread.

Qu'est-ce que HN Who's Hiring Job Finder ?

HN Who's Hiring Job Finder est une extension Chrome développée par Unknown, et sa fonction principale est "This extension allows you to search for multiple keywords on job listings in Hacker News' Who's Hiring thread.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension HN Who's Hiring Job Finder

Téléchargez les fichiers d'extension HN Who's Hiring Job Finder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Search for jobs using multiple  keywords on the Hacker News Who is Hiring thread.

https://github.com/guarani/Hacker-News-Who-s-Hiring-Job-Finder                    

Informations de Base sur l'Extension

Nom HN Who's Hiring Job Finder HN Who's Hiring Job Finder
ID jbmfinkemdkmjkiffngecpkbnhocgpla
URL Officiel https://chromewebstore.google.com/detail/hn-whos-hiring-job-finder/jbmfinkemdkmjkiffngecpkbnhocgpla
Description This extension allows you to search for multiple keywords on job listings in Hacker News' Who's Hiring thread.
Taille du Fichier 612 KB
Nombre d'Installations 87
Version Actuelle 1.3
Dernière Mise à Jour 2018-03-04
Date de Publication 2018-03-04
Évaluation 4.50/5 Total 2 Évaluations
Développeur Unknown
Type de Paiement free
Site Web de l'Extension http://schrottky.com
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HN Who's Hiring Job Finder",
    "description": "This extension allows you to search for multiple keywords on job listings in Hacker News' Who's Hiring thread.",
    "omnibox": {
        "keyword": "hn"
    },
    "icons": {
        "16": "icon16x16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "version": "1.3",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "scripts.js"
            ]
        }
    ]
}