Upwork Scraper

Scrape freelancers information from upwork search results

Co to jest Upwork Scraper?

Upwork Scraper to rozszerzenie Chrome opracowane przez AV Tech Labs, a jego główną funkcją jest „Scrape freelancers information from upwork search results”.

Pobierz plik CRX rozszerzenia Upwork Scraper

Pobierz pliki rozszerzeń Upwork Scraper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Upwork Scraper Upwork Scraper
ID jndgbjhabmbokffhahepelnopelpaljp
Oficjalny URL https://chrome.google.com/webstore/detail/upwork-scraper/jndgbjhabmbokffhahepelnopelpaljp
Opis Scrape freelancers information from upwork search results
Rozmiar pliku 4.13 KB
Liczba instalacji 47
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2016-07-10
Data Publikacji 2016-07-10
Deweloper AV Tech Labs
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}