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 هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "This extension allows you to search for multiple keywords on job listings in Hacker News' Who's Hiring thread.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة HN Who's Hiring Job Finder

قم بتنزيل ملفات الامتداد HN Who's Hiring Job Finder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}