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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

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