Search Spider

See what a search spider sees when it crawls your page.

¿Qué es Search Spider?

Search Spider es una extensión de Chrome desarrollada por Geeks on the Beach, y su función principal es "See what a search spider sees when it crawls your page.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Search Spider

Descarga archivos de extensión Search Spider en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Get a clear, at-a-glance view of what Google and other search engines see when they crawl your website.

Search Spider strips away images, scripts, bells and whistles to lay bare the basic underlying page structure and semantic design.

It highlights and itemizes headings, meta-descriptions, content, alt-tags, tracking scripts, links and more in a way that makes instant sense to designers and end-users.

Clean and simple overview of page content highlights problem-areas with a quick scroll. Output can be saved as a PDF and sent to a client for review.

Includes at a glance overview of:

 - Title
 - Meta Description
 - Breakdown of H1, H2, H3 and H4 headings
 - Word-count                    

Información Básica de la Extensión

Nombre Search Spider Search Spider
ID pgfmgjamgjoihcofbombnfmmohkdnhnj
URL Oficial https://chromewebstore.google.com/detail/search-spider/pgfmgjamgjoihcofbombnfmmohkdnhnj
Descripción See what a search spider sees when it crawls your page.
Tamaño del Archivo 543 KB
Cantidad de Instalaciones 76
Versión Actual 2.1.4
Última Actualización 2024-01-12
Fecha de Publicación 2023-04-07
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Geeks on the Beach
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://geeksonthebeach.ca
URL de la Página de Ayuda https://geeksonthebeach.ca
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Search Spider",
    "author": "Aliya Conrad",
    "version": "2.1.4",
    "description": "See what a search spider sees when it crawls your page.",
    "homepage_url": "https:\/\/geeksonthebeach.ca\/",
    "icons": {
        "16": "search-spider-16.jpg",
        "48": "search-spider-48.png",
        "128": "search-spider-128.jpg"
    },
    "action": {
        "default_icon": "search-spider-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "functions.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "activeTab",
        "scripting"
    ]
}