Lucky - Skip search

Navigate to the first search result link directly when you type a query

Lucky - Skip searchคืออะไร?

Lucky - Skip search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://i-feel-lucky.com และคุณลักษณะหลักของมันคือ "Navigate to the first search result link directly when you type a query"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lucky - Skip search

ดาวน์โหลดไฟล์ส่วนขยาย Lucky - Skip search ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        "I'm Feeling Lucky" button was one of the oldest features on Google that is designed to save people more time. When you click on the "I'm Feeling Lucky" button, it directly takes you to web pages that answer your query. For example, if you type the word "fb" and clicked "I'm Feeling Lucky," you may end up on facebook.com

When you use "I'm Feeling Lucky" button, you skip Google's search result page, along with all its ads and other irrelevant content. Most people spend 5-10 seconds on Google's search result page before clicking a link. "Lucky - Skip search" browser extension makes it simple for you to use "I'm Feeling Lucky" button in the browser. Simply type go  and it will take you directly to the first result.

"Lucky - Skip search" browser extension will also annotate Google search result with '1' - '9', allowing you simply press '1' to go to the first result. With "Lucky", you may save yourself 5-10 seconds every time you search!

Features:
- Navigate to first result with "go "
- Keyboard shortcut: Press '1' - '9' on Google search result page to go directly to the result link ('1' is the first result, '2' is the second result, etc.)
- Right click to search selected text with "I'm Feeling Lucky"
- Deep integration with Google search to provide highest quality result
- Autocomplete suggestions with personalized query suggestions powered by Google search
- No registration required

Learn more: https://i-feel-lucky.com/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Lucky - Skip search Lucky - Skip search
ID fpenjoflgejmljiniakaonpgfcamcooc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/lucky-skip-search/fpenjoflgejmljiniakaonpgfcamcooc
คำอธิบาย Navigate to the first search result link directly when you type a query
ขนาดไฟล์ 87.56 KB
จำนวนการติดตั้ง 2,236
เวอร์ชันปัจจุบัน 3.0.0
อัปเดตครั้งล่าสุด 2022-10-19
วันที่เผยแพร่ 2020-06-10
คะแนน 4.22/5 รวมทั้งหมด 18 คะแนน
ผู้พัฒนา http://i-feel-lucky.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://i-feel-lucky.com/
URL หน้าช่วยเหลือ https://i-feel-lucky.com/
URL หน้านโยบายความเป็นส่วนตัว https://modheader.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "version": "3.0.0",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "omnibox": {
        "keyword": "go"
    },
    "action": {
        "default_icon": {
            "16": "img\/icon_16.png",
            "48": "img\/icon_48.png",
            "128": "img\/icon_128.png"
        },
        "default_title": "__MSG_appName__",
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.com\/search*"
            ],
            "js": [
                "content\/import-index.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "incognito": "spanning",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.google.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "chunks\/*-*.js",
                "content\/index.js"
            ],
            "matches": [
                "*:\/\/www.google.com\/*",
                "https:\/\/www.google.com\/*"
            ]
        }
    ]
}