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ファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
}
]
} | |