Pearls Extension
Always highlight a set of words stored for chosen webpages.
Pearls Extension là gì?
Pearls Extension là một tiện ích mở rộng Chrome được phát triển bởi tony.lopes, và tính năng chính của nó là "Always highlight a set of words stored for chosen webpages.".
Ả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 Pearls Extension
Tải xuống các tệp mở rộng Pearls Extension 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
There are many web pages that contains big lists of information constantly updated. As someone would repeatedly search for multiple interesting words that also could be a large set, it would be interesting to save those words and automatically search for them as the web page is updated. Back when IRC was used as an keep-updated-tool, this feature was called THE NoTifY LiST. Here I'm calling it Pearls, for some reason (I'll find out which someday). You should reload your pages after installing the extension. (Nothing better than a restart here and there...). Last Update: - Now searching by words in double quotes will find them with case sensitive. i.e. "Go" will not match in "go there" but in "the Go language". - Bug fixes: frames. Not all, but the most important will work. Certain words like C++ will not break the highlighting.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pearls Extension |
ID | mccffpojdcohdkefnbfhfdcklpcagdlc |
URL Chính Thức | https://chromewebstore.google.com/detail/pearls-extension/mccffpojdcohdkefnbfhfdcklpcagdlc |
Mô tả | Always highlight a set of words stored for chosen webpages. |
Kích Thước Tệp | 31.18 KB |
Số Lần Cài Đặt | 20,000 |
Phiên Bản Hiện Tại | 1.0.9 |
Cập Nhật Lần Cuối | 2023-08-26 |
Ngày Phát Hành | 2013-06-26 |
Đánh Giá | 4.23/5 Tổng số 82 Đánh Giá |
Nhà Phát Triển | tony.lopes |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://code.google.com/p/pearls-chrome/ |
URL Trang Trợ Giúp | http://www.tonylopes.net |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pearls Extension", "version": "1.0.9", "manifest_version": 2, "description": "Always highlight a set of words stored for chosen webpages.", "icons": { "16": "pearl16.png", "48": "pearl48.png", "128": "pearl128.png" }, "browser_action": { "default_icon": "pearl.png", "default_popup": "popup.html" }, "background": { "scripts": [ "pearlstorage.js", "pearlupdate.js", "pearlload.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*" ], "js": [ "pearlscript.js" ], "css": [ "pearlsstyle.css" ] } ], "permissions": [ "tabs" ] } |