Scraping Helper
Automatically generate CSS selector for web structure analysis
Scraping Helper क्या है?
Scraping Helper Weicheng Huang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically generate CSS selector for web structure analysis"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Scraping Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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"
} | |