Careers Page Finder

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

Cos'è Careers Page Finder?

Careers Page Finder è un'estensione di Chrome sviluppata da https://dimafeldman.com, e la sua funzione principale è "This extension allows you to easily find the sneaky careers url on any page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Careers Page Finder

Scarica i file di estensione Careers Page Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Careers Page Finder Careers Page Finder
ID kocllagmdaamacaegmhpaknjgbkfpfag
URL Ufficiale https://chromewebstore.google.com/detail/careers-page-finder/kocllagmdaamacaegmhpaknjgbkfpfag
Descrizione This extension allows you to easily find the sneaky careers url on any page
Dimensione del File 41.44 KB
Conteggio Installazioni 25
Versione Corrente 1.0
Ultimo Aggiornamento 2016-12-18
Data di Pubblicazione 2016-12-18
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://dimafeldman.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://dimafeldman.com
Lingue Supportate 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'"
}