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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
            ]
        }
    ]
}