Google Old Results
Cleans up google results by using the old classic style with green links
Google Old Results란 무엇입니까?
Google Old Results은(는) carlosyasu91에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Cleans up google results by using the old classic style with green links"입니다.
확장 프로그램 스크린샷
Google Old Results 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |