Careers Page Finder

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

Co je Careers Page Finder?

Careers Page Finder je rozšíření Chrome vyvinuté https://dimafeldman.com, a jeho hlavní funkcí je „This extension allows you to easily find the sneaky careers url on any page“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Careers Page Finder

Stáhněte si soubory rozšíření Careers Page Finder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Careers Page Finder Careers Page Finder
ID kocllagmdaamacaegmhpaknjgbkfpfag
Oficiální URL https://chromewebstore.google.com/detail/careers-page-finder/kocllagmdaamacaegmhpaknjgbkfpfag
Popis This extension allows you to easily find the sneaky careers url on any page
Velikost souboru 41.44 KB
Počet instalací 25
Aktuální Verze 1.0
Poslední Aktualizace 2016-12-18
Datum Vydání 2016-12-18
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://dimafeldman.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://dimafeldman.com
Podporované Jazyky 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'"
}