Feeling Lucky
Quick search selected text using Google's I'm feeling lucky.
Apa itu Feeling Lucky?
Feeling Lucky adalah ekstensi Chrome yang dikembangkan oleh EnixCoda, dan fitur utamanya adalah "Quick search selected text using Google's I'm feeling lucky.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Feeling Lucky
Unduh file ekstensi Feeling Lucky dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Feeling Lucky |
ID | gkpblaimadclmdfppcoeehcelgfmhbmo |
URL Resmi | https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo |
Deskripsi | Quick search selected text using Google's I'm feeling lucky. |
Ukuran File | 28.04 KB |
Jumlah Instalasi | 54 |
Versi Saat Ini | 2.0.0 |
Terakhir Diperbarui | 2021-08-11 |
Tanggal Publikasi | 2021-02-19 |
Penilaian | 3.00/5 Total 2 Penilaian |
Pengembang | EnixCoda |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/EnixCoda/feeling-lucky |
URL Halaman Bantuan | https://github.com/EnixCoda/feeling-lucky/issues |
Bahasa yang Didukung | 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" ] } ] } |