I'm feeling lucky hotkey

Adds a hotkey to navigate to the first google search result.

Hvad er I'm feeling lucky hotkey?

I'm feeling lucky hotkey er en Chrome-udvidelse udviklet af Stan, og dens hovedfunktion er "Adds a hotkey to navigate to the first google search result.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download I'm feeling lucky hotkey-udvidelses-CRX-fil

Download I'm feeling lucky hotkey-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 very simple extension allows you to press Alt+L hotkey to navigate to the first google search result when you are on a google search page.                    

Grundlæggende oplysninger om udvidelsen

Navn I'm feeling lucky hotkey I'm feeling lucky hotkey
ID miodihhmeihljccnakcdhgpjbbkogjpp
Officiel URL https://chromewebstore.google.com/detail/im-feeling-lucky-hotkey/miodihhmeihljccnakcdhgpjbbkogjpp
Beskrivelse Adds a hotkey to navigate to the first google search result.
Filstørrelse 14.31 KB
Antal Installationer 106
Nuværende Version 1.1
Senest Opdateret 2019-07-25
Udgivelsesdato 2019-07-25
Bedømmelse 2.00/5 Samlet 1 Bedømmelser
Udvikler Stan
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "I'm feeling lucky hotkey",
    "version": "1.1",
    "description": "Adds a hotkey to navigate to the first google search result.",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "commands": {
        "toggle-feature-go": {
            "suggested_key": {
                "default": "Alt+L",
                "mac": "Alt+L"
            },
            "description": "Go to the first search result"
        }
    },
    "manifest_version": 2
}