Careers Page Finder

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

Careers Page Finder là gì?

Careers Page Finder là một tiện ích mở rộng Chrome được phát triển bởi https://dimafeldman.com, và tính năng chính của nó là "This extension allows you to easily find the sneaky careers url on any page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Careers Page Finder

Tải xuống các tệp mở rộng Careers Page Finder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Careers Page Finder Careers Page Finder
ID kocllagmdaamacaegmhpaknjgbkfpfag
URL Chính Thức https://chromewebstore.google.com/detail/careers-page-finder/kocllagmdaamacaegmhpaknjgbkfpfag
Mô tả This extension allows you to easily find the sneaky careers url on any page
Kích Thước Tệp 41.44 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-12-18
Ngày Phát Hành 2016-12-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://dimafeldman.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://dimafeldman.com
Ngôn Ngữ Được Hỗ Trợ 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'"
}