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
公式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
Eメール [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'"
}