Simple Word Highlighter
This extension highlights words on a webpage as specified by the user
Simple Word Highlighter là gì?
Simple Word Highlighter là một tiện ích mở rộng Chrome được phát triển bởi berdinemail, và tính năng chính của nó là "This extension highlights words on a webpage as specified by the user".
Ả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 Simple Word Highlighter
Tải xuống các tệp mở rộng Simple 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
This extension allows you highlight words on any website. You can specify which websites to run on You can specify which words to highlight per page You can specify which color you would like to highlight with
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ojmcbcojgmdcdmnidlgjjajoniomibdj |
URL Chính Thức | https://chrome.google.com/webstore/detail/simple-word-highlighter/ojmcbcojgmdcdmnidlgjjajoniomibdj |
Mô tả | This extension highlights words on a webpage as specified by the user |
Kích Thước Tệp | 103 KB |
Số Lần Cài Đặt | 926 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2014-10-24 |
Ngày Phát Hành | 2014-10-24 |
Đánh Giá | 3.89/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | berdinemail |
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": "Simple Word Highlighter", "description": "This extension highlights words on a webpage as specified by the user", "version": "1.0", "background": { "scripts": [ "Configure.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.min.js", "ModifyPage.js" ], "css": [ "Highlight.css" ], "all_frames": true } ], "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ] } |