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 |
官方網址 | 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" ] } ] } |