Feeling Lucky

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

Vad är Feeling Lucky?

Feeling Lucky är en Chrome-tillägg utvecklad av EnixCoda, och dess huvudfunktion är "Quick search selected text using Google's I'm feeling lucky.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Feeling Lucky-förlängningens CRX-fil

Ladda ner Feeling Lucky-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Feeling Lucky Feeling Lucky
ID gkpblaimadclmdfppcoeehcelgfmhbmo
Officiell webbadress https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo
Beskrivning Quick search selected text using Google's I'm feeling lucky.
Filstorlek 28.04 KB
Antal Installationer 54
Aktuell Version 2.0.0
Senast Uppdaterad 2021-08-11
Publiceringsdatum 2021-02-19
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare EnixCoda
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/EnixCoda/feeling-lucky
Hjälpsida URL https://github.com/EnixCoda/feeling-lucky/issues
Stödda Språk 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"
            ]
        }
    ]
}