Careers Page Finder

This extension allows you to easily find the sneaky careers url on any page

Careers Page Finderคืออะไร?

Careers Page Finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dimafeldman.com และคุณลักษณะหลักของมันคือ "This extension allows you to easily find the sneaky careers url on any page"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Careers Page Finder

ดาวน์โหลดไฟล์ส่วนขยาย Careers Page Finder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Save a few valuable seconds on every company page you visit while job hunting.
This extension allows you to easily find the sneaky careers/jobs url on any website.
It also allows you to mark links that the extension wasn't smart enough to find - and teach it how to do so next time.

Plus - it's completely open source, and available here: https://github.com/dimafeldman/careers-page-finder                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Careers Page Finder Careers Page Finder
ID kocllagmdaamacaegmhpaknjgbkfpfag
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/careers-page-finder/kocllagmdaamacaegmhpaknjgbkfpfag
คำอธิบาย This extension allows you to easily find the sneaky careers url on any page
ขนาดไฟล์ 41.44 KB
จำนวนการติดตั้ง 25
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-12-18
วันที่เผยแพร่ 2016-12-18
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://dimafeldman.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://dimafeldman.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Careers Page Finder",
    "description": "This extension allows you to easily find the sneaky careers url on any page",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icons\/icon-19.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon-16-active.png",
        "19": "icons\/icon-19-active.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "contextMenus",
        "declarativeContent",
        "webNavigation",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [],
            "js": [
                "content_page.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com\/ga.js; object-src 'self'"
}