MrScraper

MrScraper selector helper tool

Co to jest MrScraper?

MrScraper to rozszerzenie Chrome opracowane przez https://mrscraper.com, a jego główną funkcją jest „MrScraper selector helper tool”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia MrScraper

Pobierz pliki rozszerzeń MrScraper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa MrScraper MrScraper
ID bhjedfpgiobfaojogegbmcbocfnbkimh
Oficjalny URL https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh
Opis MrScraper selector helper tool
Rozmiar pliku 21.63 KB
Liczba instalacji 105
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-02-09
Data Publikacji 2023-02-08
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper https://mrscraper.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://mrscraper.com
Adres URL Strony Pomocy https://mrscraper.freshdesk.com/support/home
Adres URL Strony Polityki Prywatności https://mrscraper.com/privacy-policy
Obsługiwane Języki 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:\/\/*\/*"
            ]
        }
    ]
}