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 là gì?
Word Highlighter là một tiện ích mở rộng Chrome được phát triển bởi Rafael Almeida, và tính năng chính của nó là "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Word Highlighter
Tải xuống các tệp mở rộng Word Highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Word Highlighter |
ID | ncjaameocjfjjnjcijikhkhifncjijhn |
URL Chính Thức | https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn |
Mô tả | This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web |
Kích Thước Tệp | 229 KB |
Số Lần Cài Đặt | 826 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2016-11-27 |
Ngày Phát Hành | 2016-11-27 |
Đánh Giá | 2.75/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | Rafael Almeida |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |