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開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to easily find the sneaky careers url on any page”。

擴展截圖

screenshot

下載Careers Page Finder擴展crx文件

下載Careers Page Finder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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'"
}