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”。

擴展截圖

screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Google Old Results Google Old Results
ID mncmlbggmdcmddddanjcgabpajadljhm
官方網址 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"
            ]
        }
    ]
}