Scraping Helper
Automatically generate CSS selector for web structure analysis
Что такое Scraping Helper?
Scraping Helper - это расширение Chrome, разработанное Weicheng Huang, и его основная функция - "Automatically generate CSS selector for web structure analysis".
Снимки экрана расширения
Скачать файл CRX расширения Scraping Helper
Скачайте файлы расширений Scraping Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| ID | kmghfpaenbmakjffjhjncacmhagadgbg |
| Официальный URL | https://chromewebstore.google.com/detail/scraping-helper/kmghfpaenbmakjffjhjncacmhagadgbg |
| Описание | Automatically generate CSS selector for web structure analysis |
| Размер файла | 542 KB |
| Количество установок | 5,096 |
| Текущая Версия | 0.4 |
| Последнее Обновление | 2021-05-31 |
| Дата публикации | 2016-10-12 |
| Рейтинг | 4.31/5 Всего 13 оценок |
| Разработчик | Weicheng Huang |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/huangwc94/scraping-helper-chrome-extension |
| Поддерживаемые языки | 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"
} | |