ScreenScraper

Tool to automatically grab data from sites

Co to jest ScreenScraper?

ScreenScraper to rozszerzenie Chrome opracowane przez https://bsalinas.com, a jego główną funkcją jest „Tool to automatically grab data from sites”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ScreenScraper

Pobierz pliki rozszerzeń ScreenScraper 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

                        Automatically grab sets of data from websites and download it as a CSV or JSON file. Basically, a small extension that acts as a screen scraper and lets your easily scrape data from a website.

Let's say you have a website with:
Joe Seattle
Jean Austin
Ben Boston
Grab all that data by selecting ".foo" and then make columns for ".name", ".city", and the "src" attribute of "img". Enjoy your screen scraping!

Podstawowe informacje o rozszerzeniu

Nazwa ScreenScraper ScreenScraper
ID pfegffhjcgkneoemnlniggnhkfioidjg
Oficjalny URL https://chromewebstore.google.com/detail/screenscraper/pfegffhjcgkneoemnlniggnhkfioidjg
Opis Tool to automatically grab data from sites
Rozmiar pliku 135 KB
Liczba instalacji 4,020
Aktualna Wersja 0.3.1
Ostatnia Aktualizacja 2013-07-15
Data Publikacji 2013-07-15
Ocena 3.00/5 Łącznie 34 Oceny
Deweloper https://bsalinas.com
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": "ScreenScraper",
    "description": "Tool to automatically grab data from sites",
    "version": "0.3.1",
    "icons": {
        "128": "logo_128.png",
        "48": "logo_48.png",
        "16": "logo_16.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "jquery-1.9.1.min.js",
                "myscript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "ScreenScraper",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "logo_19.png",
            "38": "logo_38.png"
        }
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ]
}