Google Old Results

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

¿Qué es Google Old Results?

Google Old Results es una extensión de Chrome desarrollada por carlosyasu91, y su función principal es "Cleans up google results by using the old classic style with green links".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Google Old Results

Descarga archivos de extensión Google Old Results en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Google Old Results Google Old Results
ID mncmlbggmdcmddddanjcgabpajadljhm
URL Oficial https://chromewebstore.google.com/detail/google-old-results/mncmlbggmdcmddddanjcgabpajadljhm
Descripción Cleans up google results by using the old classic style with green links
Tamaño del Archivo 10.62 KB
Cantidad de Instalaciones 2,095
Versión Actual 1.2.2
Última Actualización 2020-10-13
Fecha de Publicación 2020-02-22
Calificación 3.57/5 Total de 14 Calificaciones
Desarrollador carlosyasu91
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.yasuflores.com/
URL de la Página de Ayuda https://www.yasuflores.com/
Idiomas Soportados 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"
            ]
        }
    ]
}