Automatic Keywords Highlighter

Automatically highlights given keywords on any web page you visit.

Automatic Keywords Highlighterคืออะไร?

Automatic Keywords Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matthias Path และคุณลักษณะหลักของมันคือ "Automatically highlights given keywords on any web page you visit."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Set a list of keywords and Automatic Keywords Highlighter will automatically highlight them on any web page you visit. The icon shows you how often a keyword was highlighted on the current page.

Instead of searching for the interesting bits of a web page, let Automatic Keywords Highlighter show them to you instantly. Simply type in a list of keywords and pick your favourite highlighter color.

Stop searching! Use Automatic Keywords Highlighter!                    

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

ชื่อ Automatic Keywords Highlighter Automatic Keywords Highlighter
ID gcpknobcboilhnacklgmaamlcnblneoi
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/automatic-keywords-highli/gcpknobcboilhnacklgmaamlcnblneoi
คำอธิบาย Automatically highlights given keywords on any web page you visit.
ขนาดไฟล์ 46.37 KB
จำนวนการติดตั้ง 5,000
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2015-04-15
วันที่เผยแพร่ 2015-04-15
คะแนน 3.36/5 รวมทั้งหมด 36 คะแนน
ผู้พัฒนา Matthias Path
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/wrzlbrmft/chrome-keywords-highlighter/blob/master/README.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Automatic Keywords Highlighter",
    "short_name": "Automatic Keywords Highlighter",
    "description": "Automatically highlights given keywords on any web page you visit.",
    "version": "0.1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "72": "icons\/icon72.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "homepage_url": "https:\/\/github.com\/wrzlbrmft\/chrome-keywords-highlighter\/blob\/master\/README.md",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "72": "icons\/icon72.png",
            "96": "icons\/icon96.png",
            "128": "icons\/icon128.png",
            "256": "icons\/icon256.png"
        },
        "default_title": "Automatic Keywords Highlighter",
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}