Feeling Lucky

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

Hvad er Feeling Lucky?

Feeling Lucky er en Chrome-udvidelse udviklet af EnixCoda, og dens hovedfunktion er "Quick search selected text using Google's I'm feeling lucky.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Feeling Lucky-udvidelses-CRX-fil

Download Feeling Lucky-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Feeling Lucky Feeling Lucky
ID gkpblaimadclmdfppcoeehcelgfmhbmo
Officiel URL https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo
Beskrivelse Quick search selected text using Google's I'm feeling lucky.
Filstørrelse 28.04 KB
Antal Installationer 54
Nuværende Version 2.0.0
Senest Opdateret 2021-08-11
Udgivelsesdato 2021-02-19
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler EnixCoda
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/EnixCoda/feeling-lucky
Hjælpeside-URL https://github.com/EnixCoda/feeling-lucky/issues
Understøttede Sprog 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"
            ]
        }
    ]
}