Spider Search

Uses Google to perform a website-wide search

Spider Search란 무엇입니까?

Spider Search은(는) JasonMan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Uses Google to perform a website-wide search"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        # Spider Search  
Performs a website-wide search.  
Useful for sites without a built-in search function

## Google based search
Use google to perform a website-wide search.  
Might fail if used excessively

## Non-Google based search (Crawl based)
Uses a crawler to search through the site.  
Slower, and will provide worse results than a Google based search.  
Available offline.                    

확장 프로그램 기본 정보

이름 Spider Search Spider Search
ID fkajnlmefmnbgkgjenklnmlamennphlp
공식 URL https://chromewebstore.google.com/detail/spider-search/fkajnlmefmnbgkgjenklnmlamennphlp
설명 Uses Google to perform a website-wide search
파일 크기 328 KB
설치 횟수 36
현재 버전 1.1
최근 업데이트 2019-03-20
출시 날짜 2019-03-15
평점 1.00/5 총 1 개의 평점
개발자 JasonMan
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spider Search",
    "version": "1.1",
    "description": "Uses Google to perform a website-wide search",
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/spider16.png",
            "32": "images\/spider32.png",
            "48": "images\/spider48.png",
            "128": "images\/spider128.png"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+F",
                "mac": "Command+Shift+F"
            }
        }
    },
    "icons": {
        "16": "images\/spider16.png",
        "32": "images\/spider32.png",
        "48": "images\/spider48.png",
        "128": "images\/spider128.png"
    },
    "manifest_version": 2
}