Google Old Results

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

Apa itu Google Old Results?

Google Old Results adalah ekstensi Chrome yang dikembangkan oleh carlosyasu91, dan fitur utamanya adalah "Cleans up google results by using the old classic style with green links".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Google Old Results

Unduh file ekstensi Google Old Results dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Google Old Results Google Old Results
ID mncmlbggmdcmddddanjcgabpajadljhm
URL Resmi https://chromewebstore.google.com/detail/google-old-results/mncmlbggmdcmddddanjcgabpajadljhm
Deskripsi Cleans up google results by using the old classic style with green links
Ukuran File 10.62 KB
Jumlah Instalasi 2,095
Versi Saat Ini 1.2.2
Terakhir Diperbarui 2020-10-13
Tanggal Publikasi 2020-02-22
Penilaian 3.57/5 Total 14 Penilaian
Pengembang carlosyasu91
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.yasuflores.com/
URL Halaman Bantuan https://www.yasuflores.com/
Bahasa yang Didukung 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"
            ]
        }
    ]
}