Feeling Lucky
Quick search selected text using Google's I'm feeling lucky.
Cos'è Feeling Lucky?
Feeling Lucky è un'estensione di Chrome sviluppata da EnixCoda, e la sua funzione principale è "Quick search selected text using Google's I'm feeling lucky.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Feeling Lucky
Scarica i file di estensione Feeling Lucky in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Feeling Lucky |
ID | gkpblaimadclmdfppcoeehcelgfmhbmo |
URL Ufficiale | https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo |
Descrizione | Quick search selected text using Google's I'm feeling lucky. |
Dimensione del File | 28.04 KB |
Conteggio Installazioni | 54 |
Versione Corrente | 2.0.0 |
Ultimo Aggiornamento | 2021-08-11 |
Data di Pubblicazione | 2021-02-19 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | EnixCoda |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/EnixCoda/feeling-lucky |
URL della Pagina di Aiuto | https://github.com/EnixCoda/feeling-lucky/issues |
Lingue Supportate | 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" ] } ] } |