Scraping Helper
Automatically generate CSS selector for web structure analysis
Qu'est-ce que Scraping Helper ?
Scraping Helper est une extension Chrome développée par Weicheng Huang, et sa fonction principale est "Automatically generate CSS selector for web structure analysis".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Scraping Helper
Téléchargez les fichiers d'extension Scraping Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 Informations de Base sur l'Extension
| Nom | |
| ID | kmghfpaenbmakjffjhjncacmhagadgbg |
| URL Officiel | https://chromewebstore.google.com/detail/scraping-helper/kmghfpaenbmakjffjhjncacmhagadgbg |
| Description | Automatically generate CSS selector for web structure analysis |
| Taille du Fichier | 542 KB |
| Nombre d'Installations | 5,096 |
| Version Actuelle | 0.4 |
| Dernière Mise à Jour | 2021-05-31 |
| Date de Publication | 2016-10-12 |
| Évaluation | 4.31/5 Total 13 Évaluations |
| Développeur | Weicheng Huang |
| [email protected] | |
| Type de Paiement | free |
| Site Web de l'Extension | https://github.com/huangwc94/scraping-helper-chrome-extension |
| Langues Prises en Charge | 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"
} | |