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" ] } ] } |