Upwork Scraper

Scrape freelancers information from upwork search results

Upwork Scraper là gì?

Upwork Scraper là một tiện ích mở rộng Chrome được phát triển bởi AV Tech Labs, và tính năng chính của nó là "Scrape freelancers information from upwork search results".

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

Tải xuống các tệp mở rộng Upwork Scraper 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

                        Scrape freelancers details from upwork.com browse freelancers page to csv.                    

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

Tên Upwork Scraper Upwork Scraper
ID jndgbjhabmbokffhahepelnopelpaljp
URL Chính Thức https://chrome.google.com/webstore/detail/upwork-scraper/jndgbjhabmbokffhahepelnopelpaljp
Mô tả Scrape freelancers information from upwork search results
Kích Thước Tệp 4.13 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2016-07-10
Ngày Phát Hành 2016-07-10
Nhà Phát Triển AV Tech Labs
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Upwork Scraper",
    "description": "Scrape freelancers information from upwork search results",
    "version": "1.1",
    "author": "Adhithyan Vijayakumar",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.upwork.com\/o\/profiles\/browse\/*"
            ],
            "js": [
                "scripts\/scraper.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "idle",
        "storage",
        "tabCapture",
        "tabs",
        "downloads",
        "https:\/\/www.upwork.com\/*"
    ]
}