Feeling Lucky

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

Qu'est-ce que Feeling Lucky ?

Feeling Lucky est une extension Chrome développée par EnixCoda, et sa fonction principale est "Quick search selected text using Google's I'm feeling lucky.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Feeling Lucky

Téléchargez les fichiers d'extension Feeling Lucky au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Feeling Lucky Feeling Lucky
ID gkpblaimadclmdfppcoeehcelgfmhbmo
URL Officiel https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo
Description Quick search selected text using Google's I'm feeling lucky.
Taille du Fichier 28.04 KB
Nombre d'Installations 54
Version Actuelle 2.0.0
Dernière Mise à Jour 2021-08-11
Date de Publication 2021-02-19
Évaluation 3.00/5 Total 2 Évaluations
Développeur EnixCoda
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/EnixCoda/feeling-lucky
URL de la Page d'Aide https://github.com/EnixCoda/feeling-lucky/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}