Chromescraper

Easily any data from any webpage

什麼是Chromescraper?

Chromescraper是由AltIvan開發的Chrome擴展程式,該擴展的主要功能是“Easily any data from any webpage”。

擴展截圖

下載Chromescraper擴展crx文件

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

擴展使用說明

                        Extract any data from any website, just right-click it and select "ChromeScrap this!", move the slider to expand the selector until it covers one of the elements you want to scrap. Then check (or un-check) the classes until you are satisfied with the result, it exports the data to google spreadsheets for easy viewing and modifying, if there are columns you don't need just delete them! That's it.

Watch the video if you still have doubts about how to use it!                    

擴展基本資訊

名稱 Chromescraper Chromescraper
ID gpnnphicgidbmjhcglefdaeildldigfp
官方網址 https://chrome.google.com/webstore/detail/chromescraper/gpnnphicgidbmjhcglefdaeildldigfp
簡介 Easily any data from any webpage
檔案大小 354 KB
安裝次數 5,000
目前版本 0.2
更新時間 2015-10-06
上架時間 2015-10-06
評分 2.22/5 共 32 次評分
開發者 AltIvan
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chromescraper",
    "version": "0.2",
    "description": "Easily any data from any webpage",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "contentSettings",
        "contextMenus",
        "tabs",
        "identity",
        "https:\/\/spreadsheets.google.com\/feeds\/",
        "storage"
    ],
    "oauth2": {
        "client_id": "167010525276-nt5qkngb2dnifsnjg9b70lfkujl3pu30.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/spreadsheets.google.com\/feeds",
            "https:\/\/www.googleapis.com\/auth\/drive"
        ]
    },
    "web_accessible_resources": [
        "utils.js",
        "libs\/*",
        "snippets\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "libs\/require.js",
                "require_config.js",
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "chromescrap.js"
        ]
    }
}