Convenient Search

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

什么是Convenient Search?

Convenient Search是由https://sites.google.com/site/zhucai开发的Chrome扩展程序,该扩展的主要功能是“1.search menu on select text; 2.highlight keyword such as 'Google Quick Scroll' extension”。

扩展截图

screenshot
screenshot

下载Convenient Search扩展crx文件

下载Convenient Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Convenient Search Convenient Search
ID jahomhggpolhfjpomljoelcciaogmekh
官方URL https://chromewebstore.google.com/detail/convenient-search/jahomhggpolhfjpomljoelcciaogmekh
简介 1.search menu on select text; 2.highlight keyword such as 'Google Quick Scroll' extension
文件大小 167 KB
安装次数 279
当前版本 4.0.0
更新时间 2015-01-22
上架时间 2015-01-21
评分 4.34/5 共53次评分
开发者 https://sites.google.com/site/zhucai
付费类型 free
扩展官网 http://www.cnblogs.com/zhucai/
帮助页面URL http://t.sina.com.cn/zhucai
支持的语言 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
}