Search Spider

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

Co to jest Search Spider?

Search Spider to rozszerzenie Chrome opracowane przez Geeks on the Beach, a jego główną funkcją jest „See what a search spider sees when it crawls your page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Search Spider

Pobierz pliki rozszerzeń Search Spider 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

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Search Spider Search Spider
ID pgfmgjamgjoihcofbombnfmmohkdnhnj
Oficjalny URL https://chromewebstore.google.com/detail/search-spider/pgfmgjamgjoihcofbombnfmmohkdnhnj
Opis See what a search spider sees when it crawls your page.
Rozmiar pliku 543 KB
Liczba instalacji 76
Aktualna Wersja 2.1.4
Ostatnia Aktualizacja 2024-01-12
Data Publikacji 2023-04-07
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Geeks on the Beach
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://geeksonthebeach.ca
Adres URL Strony Pomocy https://geeksonthebeach.ca
Obsługiwane Języki 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"
    ]
}