Feeling Lucky

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

Co to jest Feeling Lucky?

Feeling Lucky to rozszerzenie Chrome opracowane przez EnixCoda, a jego główną funkcją jest „Quick search selected text using Google's I'm feeling lucky.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Feeling Lucky

Pobierz pliki rozszerzeń Feeling Lucky w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Feeling Lucky Feeling Lucky
ID gkpblaimadclmdfppcoeehcelgfmhbmo
Oficjalny URL https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo
Opis Quick search selected text using Google's I'm feeling lucky.
Rozmiar pliku 28.04 KB
Liczba instalacji 54
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2021-08-11
Data Publikacji 2021-02-19
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper EnixCoda
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/EnixCoda/feeling-lucky
Adres URL Strony Pomocy https://github.com/EnixCoda/feeling-lucky/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}