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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | Scraping Helper |
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" } |