Automatic Keywords Highlighter

Automatically highlights given keywords on any web page you visit.

Automatic Keywords Highlighter란 무엇입니까?

Automatic Keywords Highlighter은(는) Matthias Path에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically highlights given keywords on any web page you visit."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Automatic Keywords Highlighter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}