Context Menu Search
Search for selected text using the context menu
什么是Context Menu Search?
Context Menu Search是由Roman Grinyov开发的Chrome扩展程序,该扩展的主要功能是“Search for selected text using the context menu”。
扩展截图
下载Context Menu Search扩展crx文件
下载Context Menu Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Use the right-click menu to search for selected text in different search engines NOTE: - "downloads" permissions are required for export / import search engines - to prevent the loss of added search engines, export them - if you have any questions, please contact me by email Source code: https://github.com/w3lifer/crx-context-menu-search
扩展基本信息
名称 | Context Menu Search |
ID | idpcgabojogahgmhdgnjkmdliaeeofka |
官方URL | https://chromewebstore.google.com/detail/context-menu-search/idpcgabojogahgmhdgnjkmdliaeeofka |
简介 | Search for selected text using the context menu |
文件大小 | 166 KB |
安装次数 | 3,025 |
当前版本 | 1.6.11 |
更新时间 | 2023-11-20 |
上架时间 | 2018-08-29 |
评分 | 4.25/5 共12次评分 |
开发者 | Roman Grinyov |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Context Menu Search", "description": "Search for selected text using the context menu", "version": "1.6.11", "icons": { "16": "img\/icons\/search-zoom\/16x16.png", "48": "img\/icons\/search-zoom\/48x48.png", "128": "img\/icons\/search-zoom\/128x128.png" }, "permissions": [ "contextMenus", "downloads", "storage" ], "background": { "persistent": false, "scripts": [ "js\/common.js", "js\/event-page.js" ] }, "options_ui": { "chrome_style": true, "page": "html\/options.html" } } |