Word Highlighter

This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web

Word Highlighterคืออะไร?

Word Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rafael Almeida และคุณลักษณะหลักของมันคือ "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Word Highlighter

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

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

                        The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter                    

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

ชื่อ Word Highlighter Word Highlighter
ID ncjaameocjfjjnjcijikhkhifncjijhn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn
คำอธิบาย This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
ขนาดไฟล์ 229 KB
จำนวนการติดตั้ง 826
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2016-11-27
วันที่เผยแพร่ 2016-11-27
คะแนน 2.75/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Rafael Almeida
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Highlighter",
    "description": "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web",
    "version": "1.0.2",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js"
            ]
        }
    ]
}