Search Plus

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

Search Plusคืออะไร?

Search Plus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hiroyuki Sano และคุณลักษณะหลักของมันคือ "The Search Plus can find the tabs you're looking for from all opened tabs."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Search Plus

ดาวน์โหลดไฟล์ส่วนขยาย Search Plus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        // 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"
            ]
        }
    ]
}