Favicons For Google Search

Puts favicons (according to Google s2 library) on Google search results.

Favicons For Google Search là gì?

Favicons For Google Search là một tiện ích mở rộng Chrome được phát triển bởi Yemsh, và tính năng chính của nó là "Puts favicons (according to Google s2 library) on Google search results.".

Ả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 Favicons For Google Search

Tải xuống các tệp mở rộng Favicons For Google Search 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

                        Enhance your Google search experience with this extension. Puts the favicon of the website next to the site's name in the Google search page. Similar to how a search looks like when searching on a mobile device.

If the website favicon is not available in the Google s2 library, the default globe favicon is used.

*** 0.2 ***
You can now choose between large and small favicon sizes. Large favicons will show up to the left of links. Small favicons will show up in the same location as the favicons on google search for mobile.

*** 0.1 ***
Favicons show up in same location as google search on mobile.                    

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

Tên Favicons For Google Search Favicons For Google Search
ID cmokoclkdghcohhmpohdhjahocjgjblp
URL Chính Thức https://chromewebstore.google.com/detail/favicons-for-google-searc/cmokoclkdghcohhmpohdhjahocjgjblp
Mô tả Puts favicons (according to Google s2 library) on Google search results.
Kích Thước Tệp 23.46 KB
Số Lần Cài Đặt 242
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2021-03-23
Ngày Phát Hành 2021-03-03
Đánh Giá 4.30/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Yemsh
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Favicons For Google Search",
    "version": "0.2",
    "description": "Puts favicons (according to Google s2 library) on Google search results.",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.google.com\/*"
    ],
    "action": {
        "matches": [
            "*:\/\/*.google.com\/*"
        ],
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}