Feeling Lucky

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

Was ist Feeling Lucky?

Feeling Lucky ist eine Chrome-Erweiterung, die von EnixCoda entwickelt wurde, und ihr Hauptmerkmal ist "Quick search selected text using Google's I'm feeling lucky.".

Erweiterungsscreenshots

screenshot
screenshot

Feeling Lucky-Erweiterungs-CRX-Datei herunterladen

Laden Sie Feeling Lucky-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Feeling Lucky Feeling Lucky
ID gkpblaimadclmdfppcoeehcelgfmhbmo
Offizielle URL https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo
Beschreibung Quick search selected text using Google's I'm feeling lucky.
Dateigröße 28.04 KB
Installationsanzahl 54
Aktuelle Version 2.0.0
Letztes Update 2021-08-11
Veröffentlichungsdatum 2021-02-19
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler EnixCoda
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/EnixCoda/feeling-lucky
Hilfeseite URL https://github.com/EnixCoda/feeling-lucky/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}