Scraping Helper
Automatically generate CSS selector for web structure analysis
Wat is Scraping Helper?
Scraping Helper is een Chrome-extensie ontwikkeld door Weicheng Huang, en de belangrijkste functie is "Automatically generate CSS selector for web structure analysis".
Extensie Screenshots
Download het CRX-bestand van de extensie Scraping Helper
Download Scraping Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | kmghfpaenbmakjffjhjncacmhagadgbg |
| Officiële URL | https://chromewebstore.google.com/detail/scraping-helper/kmghfpaenbmakjffjhjncacmhagadgbg |
| Beschrijving | Automatically generate CSS selector for web structure analysis |
| Bestandsgrootte | 542 KB |
| Aantal Installaties | 5,096 |
| Huidige Versie | 0.4 |
| Laatst Bijgewerkt | 2021-05-31 |
| Publicatiedatum | 2016-10-12 |
| Beoordeling | 4.31/5 Totaal 13 Beoordelingen |
| Ontwikkelaar | Weicheng Huang |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/huangwc94/scraping-helper-chrome-extension |
| Ondersteunde Talen | 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"
} | |