Convenient Search

1.search menu on select text; 2.highlight keyword such as 'Google Quick Scroll' extension

Co to jest Convenient Search?

Convenient Search to rozszerzenie Chrome opracowane przez https://sites.google.com/site/zhucai, a jego główną funkcją jest „1.search menu on select text; 2.highlight keyword such as 'Google Quick Scroll' extension”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Convenient Search

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

                        1.search menu when right mouse down on select text;
2.highlight keyword when open search result page,and can quick scroll to keyword, such as 'Google Quick Scroll' extension

2010.8.25 update: use chrome new api :context menu api                    

Podstawowe informacje o rozszerzeniu

Nazwa Convenient Search Convenient Search
ID jahomhggpolhfjpomljoelcciaogmekh
Oficjalny URL https://chromewebstore.google.com/detail/convenient-search/jahomhggpolhfjpomljoelcciaogmekh
Opis 1.search menu on select text; 2.highlight keyword such as 'Google Quick Scroll' extension
Rozmiar pliku 167 KB
Liczba instalacji 279
Aktualna Wersja 4.0.0
Ostatnia Aktualizacja 2015-01-22
Data Publikacji 2015-01-21
Ocena 4.34/5 Łącznie 53 Oceny
Deweloper https://sites.google.com/site/zhucai
Typ Płatności free
Strona Rozszerzenia http://www.cnblogs.com/zhucai/
Adres URL Strony Pomocy http://t.sina.com.cn/zhucai
Obsługiwane Języki en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "setting.js",
            "encodeToGb2312.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "thumb2.png",
        "default_title": "Convenient Search Extension",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "my.css"
            ],
            "js": [
                "jquery-2.1.3.js",
                "encodeToGb2312.js",
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "thumb2.png"
    },
    "name": "__MSG_extName__",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "version": "4.0.0",
    "manifest_version": 2
}