Highlight tool

Highlight tool with jumps and Regex

什麼是Highlight tool?

Highlight tool是由Utopia開發的Chrome擴展程式,該擴展的主要功能是“Highlight tool with jumps and Regex”。

擴展截圖

screenshot

下載Highlight tool擴展crx文件

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

擴展使用說明

                        Quickly highlight text in webpages using regular text or RegExp.

Press Ctrl+j to move to the next match, and Ctrl+k to move previous match.                    

擴展基本資訊

名稱 Highlight tool Highlight tool
ID bocgmaooafgikalnonpaccinefpncobc
官方網址 https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc
簡介 Highlight tool with jumps and Regex
檔案大小 209 KB
安裝次數 3,000
目前版本 0.0.6
更新時間 2017-02-14
上架時間 2017-02-14
評分 4.00/5 共 5 次評分
開發者 Utopia
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.6",
    "name": "Highlight tool",
    "description": "Highlight tool with jumps and Regex",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "38": "images\/icon-38.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "popup.html"
    ]
}