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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
}