Reg Search
Allows to search the DOM elements of a web page with regular expressions.
Reg Search là gì?
Reg Search là một tiện ích mở rộng Chrome được phát triển bởi SFerrazLeite, và tính năng chính của nó là "Allows to search the DOM elements of a web page with regular expressions.".
Ả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 Reg Search
Tải xuống các tệp mở rộng Reg Search 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
Allows to search the DOM elements of a web page with regular expressions.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reg Search |
ID | ndnhmbfdiponmfjppfblcmbkcmjoibpf |
URL Chính Thức | https://chromewebstore.google.com/detail/reg-search/ndnhmbfdiponmfjppfblcmbkcmjoibpf |
Mô tả | Allows to search the DOM elements of a web page with regular expressions. |
Kích Thước Tệp | 82.07 KB |
Số Lần Cài Đặt | 63 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-03-11 |
Ngày Phát Hành | 2016-03-11 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | SFerrazLeite |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/SFerrazLeite/reg-search |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "eventPage\/eventPage.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_popup": "popup\/popup.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+F" } }, "next": { "description": "Go to the next search result", "suggested_key": { "default": "Alt+N" } }, "prev": { "description": "Go to the previous search result", "suggested_key": { "default": "Alt+P" } }, "copy": { "description": "Copy search results as JSON array to clip board", "suggested_key": { "default": "Alt+C" } } }, "content_scripts": [ { "css": [ "content\/content.css" ], "js": [ "content\/jquery.min.js", "content\/content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ] } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png" }, "manifest_version": 2, "name": "Reg Search", "options_page": "options\/options.html", "permissions": [ "tabs", "http:\/\/*\/*", "clipboardWrite" ], "version": "1.0" } |