Scraping Helper

Automatically generate CSS selector for web structure analysis

O que é Scraping Helper?

Scraping Helper é uma extensão do Chrome desenvolvida por Weicheng Huang, e sua principal característica é "Automatically generate CSS selector for web structure analysis".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Scraping Helper

Baixe arquivos de extensão Scraping Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Scraping Helper Scraping Helper
ID kmghfpaenbmakjffjhjncacmhagadgbg
URL Oficial https://chromewebstore.google.com/detail/scraping-helper/kmghfpaenbmakjffjhjncacmhagadgbg
Descrição Automatically generate CSS selector for web structure analysis
Tamanho do Arquivo 542 KB
Contagem de Instalações 5,096
Versão Atual 0.4
Última Atualização 2021-05-31
Data de Publicação 2016-10-12
Classificação 4.31/5 Total de 13 Avaliações
Desenvolvedor Weicheng Huang
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/huangwc94/scraping-helper-chrome-extension
Idiomas Suportados 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"
}