Careers Page Finder

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

Wat is Careers Page Finder?

Careers Page Finder is een Chrome-extensie ontwikkeld door https://dimafeldman.com, en de belangrijkste functie is "This extension allows you to easily find the sneaky careers url on any page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Careers Page Finder

Download Careers Page Finder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Careers Page Finder Careers Page Finder
ID kocllagmdaamacaegmhpaknjgbkfpfag
Officiële URL https://chromewebstore.google.com/detail/careers-page-finder/kocllagmdaamacaegmhpaknjgbkfpfag
Beschrijving This extension allows you to easily find the sneaky careers url on any page
Bestandsgrootte 41.44 KB
Aantal Installaties 25
Huidige Versie 1.0
Laatst Bijgewerkt 2016-12-18
Publicatiedatum 2016-12-18
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://dimafeldman.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://dimafeldman.com
Ondersteunde Talen 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'"
}