Google Old Results
Cleans up google results by using the old classic style with green links
Qu'est-ce que Google Old Results ?
Google Old Results est une extension Chrome développée par carlosyasu91, et sa fonction principale est "Cleans up google results by using the old classic style with green links".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Google Old Results
Téléchargez les fichiers d'extension Google Old Results au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Google Old Results |
ID | mncmlbggmdcmddddanjcgabpajadljhm |
URL Officiel | https://chromewebstore.google.com/detail/google-old-results/mncmlbggmdcmddddanjcgabpajadljhm |
Description | Cleans up google results by using the old classic style with green links |
Taille du Fichier | 10.62 KB |
Nombre d'Installations | 2,095 |
Version Actuelle | 1.2.2 |
Dernière Mise à Jour | 2020-10-13 |
Date de Publication | 2020-02-22 |
Évaluation | 3.57/5 Total 14 Évaluations |
Développeur | carlosyasu91 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.yasuflores.com/ |
URL de la Page d'Aide | https://www.yasuflores.com/ |
Langues Prises en Charge | 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" ] } ] } |