MrScraper

MrScraper selector helper tool

ما هو MrScraper؟

MrScraper هو إضافة Chrome تم تطويرها بواسطة https://mrscraper.com، والميزة الرئيسية لها هي "MrScraper selector helper tool".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة MrScraper

قم بتنزيل ملفات الامتداد MrScraper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        The MrScraper.com tool lets you easily find CSS selectors from to use with scrapers.

Just click on the element you want to target and a CSS selector will be generated for you. 

Additionally, any CSS selector you type in will be highlighted. Use this to easily detect what elements will be extracted with the current selector.                    

معلومات أساسية عن التمديد

الاسم MrScraper MrScraper
ID bhjedfpgiobfaojogegbmcbocfnbkimh
عنوان URL الرسمي https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh
الوصف MrScraper selector helper tool
حجم الملف 21.63 KB
عدد التثبيتات 105
النسخة الحالية 1.0.0
آخر تحديث 2023-02-09
تاريخ النشر 2023-02-08
تقييم 1.00/5 مجموع تقييمات 1
المطور https://mrscraper.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://mrscraper.com
عنوان صفحة المساعدة https://mrscraper.freshdesk.com/support/home
عنوان صفحة سياسة الخصوصية https://mrscraper.com/privacy-policy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MrScraper",
    "version": "1.0.0",
    "description": "MrScraper selector helper tool",
    "manifest_version": 3,
    "author": "Kai Sasaki",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+V",
                "mac": "Command+Shift+V"
            }
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon-128.png",
                "templates\/scraper-tool.html"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}