Scraping Helper

Automatically generate CSS selector for web structure analysis

什麼是Scraping Helper?

Scraping Helper是由Weicheng Huang開發的Chrome擴展程式,該擴展的主要功能是“Automatically generate CSS selector for web structure analysis”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Scraping Helper擴展crx文件

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

擴展使用說明

                        Automatically generate CSS selector for web structure analysis

Feature:
* Automatically generate CSS selector for web structure analysis
* Inspect element attributes
* Generate reference code

Updates:
* Rewrite app with React and Antd
* Add python and js sample code
* Add English translation

v0.4 
This extension is still testing, please use at your caution

Install:
After install the extension, please refresh the page before "launch" the extension                    

擴展基本資訊

名稱 Scraping Helper Scraping Helper
ID kmghfpaenbmakjffjhjncacmhagadgbg
官方網址 https://chromewebstore.google.com/detail/scraping-helper/kmghfpaenbmakjffjhjncacmhagadgbg
簡介 Automatically generate CSS selector for web structure analysis
檔案大小 542 KB
安裝次數 5,096
目前版本 0.4
更新時間 2021-05-31
上架時間 2016-10-12
評分 4.31/5 共 13 次評分
開發者 Weicheng Huang
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/huangwc94/scraping-helper-chrome-extension
支援的語言 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "0.4",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "web_accessible_resources": [
        "icon.png",
        "panel.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/global.css"
            ],
            "js": [
                "js\/content.bundle.js"
            ]
        }
    ],
    "default_locale": "en"
}