Feeling Lucky
Quick search selected text using Google's I'm feeling lucky.
Feeling Lucky क्या है?
Feeling Lucky EnixCoda द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quick search selected text using Google's I'm feeling lucky."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Feeling Lucky एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" ] } ] } |