Highlighter
Highlights a user-defined list of keywords on all web pages.
Highlighter란 무엇입니까?
Highlighter은(는) gingerbeardman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlights a user-defined list of keywords on all web pages."입니다.
Highlighter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Highlight a user defined list of keywords on webpages you visit. Supports groups of words that will highlight in the same colour, and lots more! - keywords support plain text and regular expressions! - easy keyword entry - with paste support - drag and drop reordering - automatic colouring - instant update on the page - page action - options page - highlight toggle - works with dynamic content - context menu - fast! Open source:
확장 프로그램 기본 정보
이름 | |
ID | oibnefncafkleabfjlfheddocehlinga |
공식 URL | https://chrome.google.com/webstore/detail/highlighter/oibnefncafkleabfjlfheddocehlinga |
설명 | Highlights a user-defined list of keywords on all web pages. |
파일 크기 | 129 KB |
설치 횟수 | 519 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2014-01-21 |
출시 날짜 | 2014-01-21 |
평점 | 3.11/5 총 9 개의 평점 |
개발자 | gingerbeardman |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Highlighter", "description": "Highlights a user-defined list of keywords on all web pages.", "version": "1.0.0", "permissions": [ "storage", "tabs", "contextMenus" ], "options_page": "options.html", "background": { "scripts": [ "js\/background.js" ] }, "page_action": { "default_icon": { "16": "img\/icon16.png", "19": "img\/icon19.png", "38": "img\/icon38.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "default_title": "Highlighter", "default_popup": "popup.html" }, "content_scripts": [ { "css": [ "css\/highlight.css" ], "js": [ "js\/jquery.min.js", "js\/jquery.highlightregex.min.js", "js\/highlight.regex.min.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "16": "img\/icon16.png", "19": "img\/icon19.png", "38": "img\/icon38.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "manifest_version": 2 } |