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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } ] } |