Convenient Search
1.search menu on select text; 2.highlight keyword such as 'Google Quick Scroll' extension
What is Convenient Search?
Convenient Search is a Chrome extension developed by https://sites.google.com/site/zhucai, and its main feature is "1.search menu on select text; 2.highlight keyword such as 'Google Quick Scroll' extension".
Extension Screenshots
Download Convenient Search Extension CRX File
Download Convenient Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Convenient Search |
ID | jahomhggpolhfjpomljoelcciaogmekh |
Official URL | https://chromewebstore.google.com/detail/convenient-search/jahomhggpolhfjpomljoelcciaogmekh |
Description | 1.search menu on select text; 2.highlight keyword such as 'Google Quick Scroll' extension |
File Size | 167 KB |
Installation Count | 279 |
Current Version | 4.0.0 |
Last Updated | 2015-01-22 |
Publish Date | 2015-01-21 |
Rating | 4.34/5 Total 53 Ratings |
Developer | https://sites.google.com/site/zhucai |
Payment Type | free |
Extension Website | http://www.cnblogs.com/zhucai/ |
Help Page URL | http://t.sina.com.cn/zhucai |
Supported Languages | 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 } |