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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
            ]
        }
    ]
}