ScreenScraper

Tool to automatically grab data from sites

什麼是ScreenScraper?

ScreenScraper是由https://bsalinas.com開發的Chrome擴展程式,該擴展的主要功能是“Tool to automatically grab data from sites”。

擴展截圖

screenshot

下載ScreenScraper擴展crx文件

下載ScreenScraper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!

擴展基本資訊

名稱 ScreenScraper ScreenScraper
ID pfegffhjcgkneoemnlniggnhkfioidjg
官方網址 https://chromewebstore.google.com/detail/screenscraper/pfegffhjcgkneoemnlniggnhkfioidjg
簡介 Tool to automatically grab data from sites
檔案大小 135 KB
安裝次數 4,020
目前版本 0.3.1
更新時間 2013-07-15
上架時間 2013-07-15
評分 3.00/5 共 34 次評分
開發者 https://bsalinas.com
付費類型 free
支援的語言 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"
    ]
}