Search and Highlight

This extension highlights the specified word. You can specify any number of words separated by spaces. Press 'Ctrl+Shift+L', show…

Search and Highlightคืออะไร?

Search and Highlight เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Haru Soft และคุณลักษณะหลักของมันคือ "This extension highlights the specified word. You can specify any number of words separated by spaces. Press 'Ctrl+Shift+L', show…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Search and Highlight

ดาวน์โหลดไฟล์ส่วนขยาย Search and Highlight ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension highlights the specified word.
You can specify any number of words separated by spaces.
Press 'Ctrl+Shift+L', show this extensions popup, then you can input highlight words.
Press 'Alt+Shift+L' toggle highlight.

2020.08.17 Update:
'Auto highlight' feature is now available.
Enable this feature, words in text box of this tool will be highlighted when a web-page is loaded.

2020.08.16 Update:
Words surrounded by quotes(ex: "xamarin app") can be searched.

2018.11.28 Update:
Added one more shortcut 'Alt+Shift+L', this toggles highlight on-off.


この拡張機能は指定した単語をハイライトします。
任意の個数の単語をスペース区切りで指定します。
「Ctrl+Shift+L」を押すと、この拡張機能の入力窓が表示され、すぐにハイライトしたい単語を入力できます。

2020年8月17日 更新:
自動ハイライト(Auto highlight)機能を追加しました.
この機能をOnにしている場合,Webページがロードされたタイミングで自動的にハイライトされます.

2020年8月16日 更新:
検索時に引用符「"」を使ってスペースを含む文字列を検索できるようになりました.(例 : "xamarin app")

2018年11月28日 更新:
ショートカット「Alt+Shift+L」を追加しました。ハイライトのオン、オフを切り替えることができます。                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Search and Highlight Search and Highlight
ID eonkdmekioejmbllcbkjepialcifflfo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/search-and-highlight/eonkdmekioejmbllcbkjepialcifflfo
คำอธิบาย This extension highlights the specified word. You can specify any number of words separated by spaces. Press 'Ctrl+Shift+L', show…
ขนาดไฟล์ 16.35 KB
จำนวนการติดตั้ง 1,825
เวอร์ชันปัจจุบัน 1.4.0.0
อัปเดตครั้งล่าสุด 2020-08-18
วันที่เผยแพร่ 2018-11-27
คะแนน 3.73/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา Haru Soft
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/shuheydev/SearchAndHighlight_For_Chrome
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Search and Highlight",
    "version": "1.4.0.0",
    "icons": {
        "128": "icons\/searchAndHighlightIcon.png"
    },
    "browser_action": {
        "default_icon": {
            "128": "icons\/searchAndHighlightIcon.png"
        },
        "default_title": "Search and Highlight",
        "default_popup": "popup\/popup.html",
        "browser_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "contentScripts\/scripts\/contentScript.js",
                "contentScripts\/scripts\/highlight.js"
            ],
            "css": [
                "contentScripts\/css\/highlight.css"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            }
        },
        "command_toggleHighlightNow": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Toggle Highlight"
        }
    },
    "permissions": [
        "storage"
    ]
}