Scraping Helper

Automatically generate CSS selector for web structure analysis

Co to jest Scraping Helper?

Scraping Helper to rozszerzenie Chrome opracowane przez Weicheng Huang, a jego główną funkcją jest „Automatically generate CSS selector for web structure analysis”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Scraping Helper

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

Podstawowe informacje o rozszerzeniu

Nazwa Scraping Helper Scraping Helper
ID kmghfpaenbmakjffjhjncacmhagadgbg
Oficjalny URL https://chromewebstore.google.com/detail/scraping-helper/kmghfpaenbmakjffjhjncacmhagadgbg
Opis Automatically generate CSS selector for web structure analysis
Rozmiar pliku 542 KB
Liczba instalacji 5,096
Aktualna Wersja 0.4
Ostatnia Aktualizacja 2021-05-31
Data Publikacji 2016-10-12
Ocena 4.31/5 Łącznie 13 Oceny
Deweloper Weicheng Huang
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/huangwc94/scraping-helper-chrome-extension
Obsługiwane Języki 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"
}