Scraping Helper
Automatically generate CSS selector for web structure analysis
Cos'è Scraping Helper?
Scraping Helper è un'estensione di Chrome sviluppata da Weicheng Huang, e la sua funzione principale è "Automatically generate CSS selector for web structure analysis".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Scraping Helper
Scarica i file di estensione Scraping Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Scraping Helper |
ID | kmghfpaenbmakjffjhjncacmhagadgbg |
URL Ufficiale | https://chromewebstore.google.com/detail/scraping-helper/kmghfpaenbmakjffjhjncacmhagadgbg |
Descrizione | Automatically generate CSS selector for web structure analysis |
Dimensione del File | 542 KB |
Conteggio Installazioni | 5,096 |
Versione Corrente | 0.4 |
Ultimo Aggiornamento | 2021-05-31 |
Data di Pubblicazione | 2016-10-12 |
Valutazione | 4.31/5 Totale 13 Valutazioni |
Sviluppatore | Weicheng Huang |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/huangwc94/scraping-helper-chrome-extension |
Lingue Supportate | 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" } |