Google Result Highlighter

Highlight google search results from trusted websites.

什么是Google Result Highlighter?

Google Result Highlighter是由harunurhan开发的Chrome扩展程序,该扩展的主要功能是“Highlight google search results from trusted websites.”。

扩展截图

screenshot

下载Google Result Highlighter扩展crx文件

下载Google Result Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Highlight google search results from trusted websites.

You need to the website which you trust like stackoverflow.com or en.wikipedia.org and select a color for each of them. After that, the extension will highlight results of your google search from that web sites using the colors which you chose.

It is an open source project: https://github.com/harunurhan/google-result-highlighter                    

扩展基本信息

名称 Google Result Highlighter Google Result Highlighter
ID kimgfbhinaigoahlilmenjgbkcdfbeic
官方URL https://chromewebstore.google.com/detail/google-result-highlighter/kimgfbhinaigoahlilmenjgbkcdfbeic
简介 Highlight google search results from trusted websites.
文件大小 1.07 MB
安装次数 190
当前版本 0.6
更新时间 2021-01-02
上架时间 2018-03-03
评分 3.67/5 共3次评分
开发者 harunurhan
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Result Highlighter",
    "description": "Highlight google search results from trusted websites.",
    "version": "0.6",
    "permissions": [
        "*:\/\/www.google.co.uk\/*",
        "*:\/\/www.google.com.tr\/*",
        "*:\/\/www.google.com\/*",
        "*:\/\/www.google.co.in\/*",
        "*:\/\/www.google.com.my\/*",
        "*:\/\/www.google.co.id\/*",
        "*:\/\/www.google.ca\/*",
        "*:\/\/www.google.com.br\/*",
        "*:\/\/www.google.fr\/*",
        "*:\/\/www.google.de\/*",
        "*:\/\/www.google.es\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.co.uk\/*",
                "*:\/\/www.google.com.tr\/*",
                "*:\/\/www.google.com\/*",
                "*:\/\/www.google.co.in\/*",
                "*:\/\/www.google.com.my\/*",
                "*:\/\/www.google.co.id\/*",
                "*:\/\/www.google.ca\/*",
                "*:\/\/www.google.com.br\/*",
                "*:\/\/www.google.fr\/*",
                "*:\/\/www.google.de\/*",
                "*:\/\/www.google.es\/*"
            ],
            "js": [
                "highlight.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "manifest_version": 2,
    "options_page": "config.html"
}