Feeling Lucky

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

O que é Feeling Lucky?

Feeling Lucky é uma extensão do Chrome desenvolvida por EnixCoda, e sua principal característica é "Quick search selected text using Google's I'm feeling lucky.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Feeling Lucky

Baixe arquivos de extensão Feeling Lucky no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Feeling Lucky Feeling Lucky
ID gkpblaimadclmdfppcoeehcelgfmhbmo
URL Oficial https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo
Descrição Quick search selected text using Google's I'm feeling lucky.
Tamanho do Arquivo 28.04 KB
Contagem de Instalações 54
Versão Atual 2.0.0
Última Atualização 2021-08-11
Data de Publicação 2021-02-19
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor EnixCoda
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/EnixCoda/feeling-lucky
URL da Página de Ajuda https://github.com/EnixCoda/feeling-lucky/issues
Idiomas Suportados 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"
            ]
        }
    ]
}