Feeling Lucky

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

Feeling Lucky là gì?

Feeling Lucky là một tiện ích mở rộng Chrome được phát triển bởi EnixCoda, và tính năng chính của nó là "Quick search selected text using Google's I'm feeling lucky.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Feeling Lucky

Tải xuống các tệp mở rộng Feeling Lucky dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Feeling Lucky Feeling Lucky
ID gkpblaimadclmdfppcoeehcelgfmhbmo
URL Chính Thức https://chromewebstore.google.com/detail/feeling-lucky/gkpblaimadclmdfppcoeehcelgfmhbmo
Mô tả Quick search selected text using Google's I'm feeling lucky.
Kích Thước Tệp 28.04 KB
Số Lần Cài Đặt 54
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2021-08-11
Ngày Phát Hành 2021-02-19
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển EnixCoda
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/EnixCoda/feeling-lucky
URL Trang Trợ Giúp https://github.com/EnixCoda/feeling-lucky/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}