Feeling Lucky
Quick search selected text using Google's I'm feeling lucky.
Wat is Feeling Lucky?
Feeling Lucky is een Chrome-extensie ontwikkeld door EnixCoda, en de belangrijkste functie is "Quick search selected text using Google's I'm feeling lucky.".
Extensie Screenshots
Download het CRX-bestand van de extensie Feeling Lucky
Download Feeling Lucky-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Feeling Lucky |
ID | gkpblaimadclmdfppcoeehcelgfmhbmo |
Officiële URL | https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo |
Beschrijving | Quick search selected text using Google's I'm feeling lucky. |
Bestandsgrootte | 28.04 KB |
Aantal Installaties | 54 |
Huidige Versie | 2.0.0 |
Laatst Bijgewerkt | 2021-08-11 |
Publicatiedatum | 2021-02-19 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | EnixCoda |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/EnixCoda/feeling-lucky |
Help Pagina-URL | https://github.com/EnixCoda/feeling-lucky/issues |
Ondersteunde Talen | 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" ] } ] } |