Google Old Results

Cleans up google results by using the old classic style with green links

Google Old Results क्या है?

Google Old Results carlosyasu91 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Cleans up google results by using the old classic style with green links"।

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

screenshot
screenshot

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

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

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

                        The purpose of this extension is to show Google results in the way they used to before around January 2020, when the results page added a cached page dropdown and a favicon to the results page and moved the URL to above the title.

You can see the before and after in the screenshots.

It does two things:
-Hides the favicon and the dropdown to get you to the cached page.
-Adjust styles to replace new user interface with one that is similar to the classic google results before Jan 2020.                    

एक्सटेंशन की मूल जानकारी

नाम Google Old Results Google Old Results
ID mncmlbggmdcmddddanjcgabpajadljhm
आधिकारिक URL https://chromewebstore.google.com/detail/google-old-results/mncmlbggmdcmddddanjcgabpajadljhm
विवरण Cleans up google results by using the old classic style with green links
फ़ाइल का आकार 10.62 KB
स्थापना संख्या 2,095
वर्तमान संस्करण 1.2.2
अंतिम अपडेट 2020-10-13
प्रकाशन तिथि 2020-02-22
रेटिंग 3.57/5 कुल 14 रेटिंग्स
डेवलपर carlosyasu91
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.yasuflores.com/
सहायता पृष्ठ URL https://www.yasuflores.com/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Old Results",
    "version": "1.2.2",
    "description": "Cleans up google results by using the old classic style with green links",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/google.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "content\/google.css"
            ]
        }
    ]
}