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.

HN Who's Hiring Job Finderとは何ですか?

HN Who's Hiring Job FinderはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to search for multiple keywords on job listings in Hacker News' Who's Hiring thread.」です。

拡張機能のスクリーンショット

screenshot

HN Who's Hiring Job Finder拡張機能のCRXファイルをダウンロード

HN Who's Hiring Job Finder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 HN Who's Hiring Job Finder HN Who's Hiring Job Finder
ID jbmfinkemdkmjkiffngecpkbnhocgpla
公式URL https://chromewebstore.google.com/detail/hn-whos-hiring-job-finder/jbmfinkemdkmjkiffngecpkbnhocgpla
説明 This extension allows you to search for multiple keywords on job listings in Hacker News' Who's Hiring thread.
ファイルサイズ 612 KB
インストール数 87
現在のバージョン 1.3
最終更新日 2018-03-04
公開日 2018-03-04
評価 4.50/5 合計 2 レビュー
開発者 Unknown
支払い方法 free
拡張機能のウェブサイト http://schrottky.com
対応言語 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"
            ]
        }
    ]
}