Feeling Lucky
Quick search selected text using Google's I'm feeling lucky.
Feeling Luckyคืออะไร?
Feeling Lucky เป็นส่วนขยายของ Chrome ที่พัฒนาโดย EnixCoda และคุณลักษณะหลักของมันคือ "Quick search selected text using Google's I'm feeling lucky."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Feeling Lucky
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } ] } |