Google Old Results
Cleans up google results by using the old classic style with green links
Was ist Google Old Results?
Google Old Results ist eine Chrome-Erweiterung, die von carlosyasu91 entwickelt wurde, und ihr Hauptmerkmal ist "Cleans up google results by using the old classic style with green links".
Erweiterungsscreenshots
Google Old Results-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Old Results-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Google Old Results |
ID | mncmlbggmdcmddddanjcgabpajadljhm |
Offizielle URL | https://chromewebstore.google.com/detail/google-old-results/mncmlbggmdcmddddanjcgabpajadljhm |
Beschreibung | Cleans up google results by using the old classic style with green links |
Dateigröße | 10.62 KB |
Installationsanzahl | 2,095 |
Aktuelle Version | 1.2.2 |
Letztes Update | 2020-10-13 |
Veröffentlichungsdatum | 2020-02-22 |
Bewertung | 3.57/5 Insgesamt 14 Bewertungen |
Entwickler | carlosyasu91 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.yasuflores.com/ |
Hilfeseite URL | https://www.yasuflores.com/ |
Unterstützte Sprachen | 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" ] } ] } |