Feeling Lucky
Quick search selected text using Google's I'm feeling lucky.
什么是Feeling Lucky?
Feeling Lucky是由EnixCoda开发的Chrome扩展程序,该扩展的主要功能是“Quick search selected text using Google's I'm feeling lucky.”。
扩展截图
下载Feeling Lucky扩展crx文件
下载Feeling Lucky扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds a context menu item to trigger search with selected text using the I'm feeling lucky provided by Google, which takes user to the website that matches the keyword best. You can enable auto-skip the redirect page by activating this extension via browser's extension control panel, see preview images for instructions.
扩展基本信息
名称 | Feeling Lucky |
ID | gkpblaimadclmdfppcoeehcelgfmhbmo |
官方URL | https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo |
简介 | Quick search selected text using Google's I'm feeling lucky. |
文件大小 | 28.04 KB |
安装次数 | 54 |
当前版本 | 2.0.0 |
更新时间 | 2021-08-11 |
上架时间 | 2021-02-19 |
评分 | 3.00/5 共2次评分 |
开发者 | EnixCoda |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/EnixCoda/feeling-lucky |
帮助页面URL | https://github.com/EnixCoda/feeling-lucky/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Feeling Lucky", "version": "2.0.0", "description": "Quick search selected text using Google's I'm feeling lucky.", "homepage_url": "https:\/\/github.com\/EnixCoda\/feeling-lucky", "manifest_version": 2, "icons": { "64": "icon_64.png", "200": "icon.png" }, "permissions": [ "contextMenus", "https:\/\/www.google.com\/url?*" ], "optional_permissions": [ "https:\/\/*\/*" ], "background": { "persistent": false, "scripts": [ "browser-polyfill.min.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/url?*" ], "js": [ "content.js" ] } ] } |