Favicons For Google Search

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

Favicons For Google Search क्या है?

Favicons For Google Search Yemsh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Puts favicons (according to Google s2 library) on Google search results."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Favicons For Google Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    }
}