Careers Page Finder

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

Careers Page Finder क्या है?

Careers Page Finder https://dimafeldman.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to easily find the sneaky careers url on any page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Careers Page Finder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Careers Page Finder Careers Page Finder
ID kocllagmdaamacaegmhpaknjgbkfpfag
आधिकारिक URL https://chromewebstore.google.com/detail/careers-page-finder/kocllagmdaamacaegmhpaknjgbkfpfag
विवरण This extension allows you to easily find the sneaky careers url on any page
फ़ाइल का आकार 41.44 KB
स्थापना संख्या 25
वर्तमान संस्करण 1.0
अंतिम अपडेट 2016-12-18
प्रकाशन तिथि 2016-12-18
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://dimafeldman.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://dimafeldman.com
समर्थित भाषाएँ 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'"
}