Careers Page Finder

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

Apa itu Careers Page Finder?

Careers Page Finder adalah ekstensi Chrome yang dikembangkan oleh https://dimafeldman.com, dan fitur utamanya adalah "This extension allows you to easily find the sneaky careers url on any page".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Careers Page Finder

Unduh file ekstensi Careers Page Finder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Careers Page Finder Careers Page Finder
ID kocllagmdaamacaegmhpaknjgbkfpfag
URL Resmi https://chromewebstore.google.com/detail/careers-page-finder/kocllagmdaamacaegmhpaknjgbkfpfag
Deskripsi This extension allows you to easily find the sneaky careers url on any page
Ukuran File 41.44 KB
Jumlah Instalasi 25
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-12-18
Tanggal Publikasi 2016-12-18
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://dimafeldman.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://dimafeldman.com
Bahasa yang Didukung 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'"
}