Feeling Lucky

Quick search selected text using Google's I'm feeling lucky.

What is Feeling Lucky?

Feeling Lucky is a Chrome extension developed by EnixCoda, and its main feature is "Quick search selected text using Google's I'm feeling lucky.".

Extension Screenshots

screenshot
screenshot

Download Feeling Lucky Extension CRX File

Download Feeling Lucky extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Feeling Lucky Feeling Lucky
ID gkpblaimadclmdfppcoeehcelgfmhbmo
Official URL https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo
Description Quick search selected text using Google's I'm feeling lucky.
File Size 28.04 KB
Installation Count 54
Current Version 2.0.0
Last Updated 2021-08-11
Publish Date 2021-02-19
Rating 3.00/5 Total 2 Ratings
Developer EnixCoda
Email [email protected]
Payment Type free
Extension Website https://github.com/EnixCoda/feeling-lucky
Help Page URL https://github.com/EnixCoda/feeling-lucky/issues
Supported Languages 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"
            ]
        }
    ]
}