Careers Page Finder

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

Qu'est-ce que Careers Page Finder ?

Careers Page Finder est une extension Chrome développée par https://dimafeldman.com, et sa fonction principale est "This extension allows you to easily find the sneaky careers url on any page".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Careers Page Finder

Téléchargez les fichiers d'extension Careers Page Finder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Careers Page Finder Careers Page Finder
ID kocllagmdaamacaegmhpaknjgbkfpfag
URL Officiel https://chromewebstore.google.com/detail/careers-page-finder/kocllagmdaamacaegmhpaknjgbkfpfag
Description This extension allows you to easily find the sneaky careers url on any page
Taille du Fichier 41.44 KB
Nombre d'Installations 25
Version Actuelle 1.0
Dernière Mise à Jour 2016-12-18
Date de Publication 2016-12-18
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://dimafeldman.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://dimafeldman.com
Langues Prises en Charge 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'"
}