Google Old Results
Cleans up google results by using the old classic style with green links
Τι είναι το Google Old Results;
Το Google Old Results είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον carlosyasu91, και η κύρια λειτουργία του είναι "Cleans up google results by using the old classic style with green links".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Google Old Results
Λήψη αρχείων επέκτασης Google Old Results σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Google Old Results |
ID | mncmlbggmdcmddddanjcgabpajadljhm |
Επίσημο URL | https://chromewebstore.google.com/detail/google-old-results/mncmlbggmdcmddddanjcgabpajadljhm |
Περιγραφή | Cleans up google results by using the old classic style with green links |
Μέγεθος Αρχείου | 10.62 KB |
Αριθμός Εγκαταστάσεων | 2,095 |
Τρέχουσα Έκδοση | 1.2.2 |
Τελευταία Ενημέρωση | 2020-10-13 |
Ημερομηνία Δημοσίευσης | 2020-02-22 |
Αξιολόγηση | 3.57/5 Συνολικά 14 Αξιολογήσεις |
Προγραμματιστής | carlosyasu91 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.yasuflores.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.yasuflores.com/ |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |