MrScraper

MrScraper selector helper tool

O que é MrScraper?

MrScraper é uma extensão do Chrome desenvolvida por https://mrscraper.com, e sua principal característica é "MrScraper selector helper tool".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão MrScraper

Baixe arquivos de extensão MrScraper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome MrScraper MrScraper
ID bhjedfpgiobfaojogegbmcbocfnbkimh
URL Oficial https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh
Descrição MrScraper selector helper tool
Tamanho do Arquivo 21.63 KB
Contagem de Instalações 105
Versão Atual 1.0.0
Última Atualização 2023-02-09
Data de Publicação 2023-02-08
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor https://mrscraper.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://mrscraper.com
URL da Página de Ajuda https://mrscraper.freshdesk.com/support/home
URL da Página de Política de Privacidade https://mrscraper.com/privacy-policy
Idiomas Suportados 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:\/\/*\/*"
            ]
        }
    ]
}