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.

Cos'è HN Who's Hiring Job Finder?

HN Who's Hiring Job Finder è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension allows you to search for multiple keywords on job listings in Hacker News' Who's Hiring thread.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione HN Who's Hiring Job Finder

Scarica i file di estensione HN Who's Hiring Job Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome HN Who's Hiring Job Finder HN Who's Hiring Job Finder
ID jbmfinkemdkmjkiffngecpkbnhocgpla
URL Ufficiale https://chromewebstore.google.com/detail/hn-whos-hiring-job-finder/jbmfinkemdkmjkiffngecpkbnhocgpla
Descrizione This extension allows you to search for multiple keywords on job listings in Hacker News' Who's Hiring thread.
Dimensione del File 612 KB
Conteggio Installazioni 87
Versione Corrente 1.3
Ultimo Aggiornamento 2018-03-04
Data di Pubblicazione 2018-03-04
Valutazione 4.50/5 Totale 2 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione http://schrottky.com
Lingue Supportate 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"
            ]
        }
    ]
}