Search Spider

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

Search Spider란 무엇입니까?

Search Spider은(는) Geeks on the Beach에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See what a search spider sees when it crawls your page."입니다.

확장 프로그램 스크린샷

screenshot

Search Spider 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Search Spider Search Spider
ID pgfmgjamgjoihcofbombnfmmohkdnhnj
공식 URL https://chromewebstore.google.com/detail/search-spider/pgfmgjamgjoihcofbombnfmmohkdnhnj
설명 See what a search spider sees when it crawls your page.
파일 크기 543 KB
설치 횟수 76
현재 버전 2.1.4
최근 업데이트 2024-01-12
출시 날짜 2023-04-07
평점 5.00/5 총 2 개의 평점
개발자 Geeks on the Beach
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://geeksonthebeach.ca
도움말 페이지 URL https://geeksonthebeach.ca
지원되는 언어 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"
    ]
}