Careers Page Finder

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

Was ist Careers Page Finder?

Careers Page Finder ist eine Chrome-Erweiterung, die von https://dimafeldman.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to easily find the sneaky careers url on any page".

Erweiterungsscreenshots

screenshot

Careers Page Finder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Careers Page Finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Careers Page Finder Careers Page Finder
ID kocllagmdaamacaegmhpaknjgbkfpfag
Offizielle URL https://chromewebstore.google.com/detail/careers-page-finder/kocllagmdaamacaegmhpaknjgbkfpfag
Beschreibung This extension allows you to easily find the sneaky careers url on any page
Dateigröße 41.44 KB
Installationsanzahl 25
Aktuelle Version 1.0
Letztes Update 2016-12-18
Veröffentlichungsdatum 2016-12-18
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://dimafeldman.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://dimafeldman.com
Unterstützte Sprachen 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'"
}