Highlight Search Keywords
Highlight the keywords that you searched in google
Highlight Search Keywords란 무엇입니까?
Highlight Search Keywords은(는) Desheng Li에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight the keywords that you searched in google"입니다.
확장 프로그램 스크린샷
Highlight Search Keywords 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Since the new policy of Chrome Extension, to enable the extension again. Please click the icon -> This can read an change the site data -> On all site (recommended) or the site you are currently on. An extension that highlight the keywords that you searched on Google. Press F5 to remove the highlights.
확장 프로그램 기본 정보
이름 | Highlight Search Keywords |
ID | nflhamjkngakbdnihackfkjoabknmooi |
공식 URL | https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi |
설명 | Highlight the keywords that you searched in google |
파일 크기 | 145 KB |
설치 횟수 | 5,605 |
현재 버전 | 0.4 |
최근 업데이트 | 2019-08-21 |
출시 날짜 | 2019-08-21 |
평점 | 3.21/5 총 33 개의 평점 |
개발자 | Desheng Li |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Highlight Search Keywords", "description": "Highlight the keywords that you searched in google", "version": "0.4", "permissions": [ "storage" ], "manifest_version": 2, "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/*", "http:\/\/www.google.com\/*" ], "js": [ "catchkeywords.js" ], "run_at": "document_end" }, { "exclude_matches": [ "https:\/\/www.google.com\/*", "http:\/\/www.google.com\/*" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "highlightkeywords.js" ], "run_at": "document_end" } ] } |