Favicons For Google Search

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

什麼是Favicons For Google Search?

Favicons For Google Search是由Yemsh開發的Chrome擴展程式,該擴展的主要功能是“Puts favicons (according to Google s2 library) on Google search results.”。

擴展截圖

screenshot
screenshot

下載Favicons For Google Search擴展crx文件

下載Favicons For Google Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Favicons For Google Search Favicons For Google Search
ID cmokoclkdghcohhmpohdhjahocjgjblp
官方網址 https://chromewebstore.google.com/detail/favicons-for-google-searc/cmokoclkdghcohhmpohdhjahocjgjblp
簡介 Puts favicons (according to Google s2 library) on Google search results.
檔案大小 23.46 KB
安裝次數 242
目前版本 0.2
更新時間 2021-03-23
上架時間 2021-03-03
評分 4.30/5 共 10 次評分
開發者 Yemsh
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}