Feeling Lucky

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

Feeling Luckyとは何ですか?

Feeling LuckyはEnixCodaによって開発されたChromeの拡張機能で、その主な機能は「Quick search selected text using Google's I'm feeling lucky.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Feeling Lucky拡張機能のCRXファイルをダウンロード

Feeling Lucky拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Feeling Lucky Feeling Lucky
ID gkpblaimadclmdfppcoeehcelgfmhbmo
公式URL https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo
説明 Quick search selected text using Google's I'm feeling lucky.
ファイルサイズ 28.04 KB
インストール数 54
現在のバージョン 2.0.0
最終更新日 2021-08-11
公開日 2021-02-19
評価 3.00/5 合計 2 レビュー
開発者 EnixCoda
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/EnixCoda/feeling-lucky
ヘルプページのURL https://github.com/EnixCoda/feeling-lucky/issues
対応言語 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"
            ]
        }
    ]
}