Scraping Helper
Automatically generate CSS selector for web structure analysis
Co je Scraping Helper?
Scraping Helper je rozšíření Chrome vyvinuté Weicheng Huang, a jeho hlavní funkcí je „Automatically generate CSS selector for web structure analysis“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Scraping Helper
Stáhněte si soubory rozšíření Scraping Helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Scraping Helper |
ID | kmghfpaenbmakjffjhjncacmhagadgbg |
Oficiální URL | https://chromewebstore.google.com/detail/scraping-helper/kmghfpaenbmakjffjhjncacmhagadgbg |
Popis | Automatically generate CSS selector for web structure analysis |
Velikost souboru | 542 KB |
Počet instalací | 5,096 |
Aktuální Verze | 0.4 |
Poslední Aktualizace | 2021-05-31 |
Datum Vydání | 2016-10-12 |
Hodnocení | 4.31/5 Celkem 13 Hodnocení |
Vývojář | Weicheng Huang |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/huangwc94/scraping-helper-chrome-extension |
Podporované Jazyky | 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" } |