Google Old Results

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

O que é Google Old Results?

Google Old Results é uma extensão do Chrome desenvolvida por carlosyasu91, e sua principal característica é "Cleans up google results by using the old classic style with green links".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Google Old Results

Baixe arquivos de extensão Google Old Results no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Google Old Results Google Old Results
ID mncmlbggmdcmddddanjcgabpajadljhm
URL Oficial https://chromewebstore.google.com/detail/google-old-results/mncmlbggmdcmddddanjcgabpajadljhm
Descrição Cleans up google results by using the old classic style with green links
Tamanho do Arquivo 10.62 KB
Contagem de Instalações 2,095
Versão Atual 1.2.2
Última Atualização 2020-10-13
Data de Publicação 2020-02-22
Classificação 3.57/5 Total de 14 Avaliações
Desenvolvedor carlosyasu91
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.yasuflores.com/
URL da Página de Ajuda https://www.yasuflores.com/
Idiomas Suportados 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"
            ]
        }
    ]
}