Highlight Word When Double Click

Double click on a word, the other same words in the page are automatically highlighted

什麼是Highlight Word When Double Click?

Highlight Word When Double Click是由qii404開發的Chrome擴展程式,該擴展的主要功能是“Double click on a word, the other same words in the page are automatically highlighted”。

擴展截圖

screenshot
screenshot
screenshot

下載Highlight Word When Double Click擴展crx文件

下載Highlight Word When Double Click擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Double-click to select a word, the word in other positions on the page will be automatically highlighted

2021.08.04 supports displaying the total number of matches
2020.07.03 The additional selected leading and trailing spaces when double-clicking will not affect the matching
2020.06.04 Add right side preview, similar to ctrl+F right sidebar
2020.05.03 Support iframe highlight
2020.04.13 Click on the extension icon, you can set the highlight function to be temporarily disabled when double-clicking to prevent jams in some large pages
2019.04.12 After selecting the sentence, it can be highlighted by the shortcut key Alt+S~ Press again to cancel the highlight~                    

擴展基本資訊

名稱 Highlight Word When Double Click Highlight Word When Double Click
ID hiemiigjnmkjedjibioplldlbkhekbjk
官方網址 https://chromewebstore.google.com/detail/highlight-word-when-doubl/hiemiigjnmkjedjibioplldlbkhekbjk
簡介 Double click on a word, the other same words in the page are automatically highlighted
檔案大小 35.68 KB
安裝次數 1,422
目前版本 0.1.6
更新時間 2021-09-03
上架時間 2020-07-03
評分 4.71/5 共 17 次評分
開發者 qii404
電子郵箱 [email protected]
付費類型 free
支援的語言 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_title__",
    "description": "__MSG_description__",
    "version": "0.1.6",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "context.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "http:\/\/*\/",
                "https:\/\/*\/*",
                "https:\/\/*\/"
            ],
            "js": [
                "highLight.js"
            ],
            "css": [
                "highlight.css"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "16.png",
            "48": "48.png",
            "128": "128.png"
        },
        "default_popup": "popup.html"
    },
    "default_locale": "zh_CN",
    "commands": {
        "highlight": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "\u9ad8\u4eae\u9875\u9762\u5185\u5bb9"
        }
    }
}