Search Plus

The Search Plus can find the tabs you're looking for from all opened tabs.

Search Plus란 무엇입니까?

Search Plus은(는) Hiroyuki Sano에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The Search Plus can find the tabs you're looking for from all opened tabs."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        // What is this?
The Search Plus is a Chrome Extension App.
It helps to find the tabs you're looking for from all opened tabs regardless of window, and you can manage the found tabs easily and quickly.

// Features
- Search tabs contains specific words
- You can operate found tabs
-- close tabs
-- collect tabs into a single window
- Insert text to the title of tabs
- Inject code to the document of tabs
- Capture images from tabs all at once
- Language Supports: English, Japanese

// ScreenCast
http://www.youtube.com/watch?v=HdDoRi4C7RU

// Versions
2012/04/19 Version 0.8
Add features, to get tabs' capture images, etc...
2012/04/15 Version 0.6
Japanese Language has been supported.
2012/04/12 Version 0.4
Add features, to inject code to the document of tabs, etc...
2012/04/12 Version 0.3
Rename "FullSearch" to "Search Plus"                    

확장 프로그램 기본 정보

이름 Search Plus Search Plus
ID cdpohbejnbclggljmoijjcpdhbaaijfm
공식 URL https://chromewebstore.google.com/detail/search-plus/cdpohbejnbclggljmoijjcpdhbaaijfm
설명 The Search Plus can find the tabs you're looking for from all opened tabs.
파일 크기 149 KB
설치 횟수 10,557
현재 버전 0.8
최근 업데이트 2016-02-07
출시 날짜 2016-02-07
평점 3.31/5 총 77 개의 평점
개발자 Hiroyuki Sano
결제 유형 free
지원되는 언어 en,ja
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search Plus",
    "version": "0.8",
    "manifest_version": 2,
    "description": "The Search Plus can find the tabs you're looking for from all opened tabs.",
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com https:\/\/connect.facebook.net; object-src 'none'",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/cdpohbejnbclggljmoijjcpdhbaaijfm",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "default_locale": "en",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "img\/icon-16.png",
        "default_title": "Search Plus",
        "default_popup": "html\/popup_tempo.html"
    },
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ]
}