Finding patterns
Look for patterns inside HTML, JS, CSS and AJAX code
Finding patterns là gì?
Finding patterns là một tiện ích mở rộng Chrome được phát triển bởi carlosV2, và tính năng chính của nó là "Look for patterns inside HTML, JS, CSS and AJAX code".
Ả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 Finding patterns
Tải xuống các tệp mở rộng Finding patterns 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 aims to help you to find bugs on your webpage. Also, it can show you any text you need to know. It is useful when your webpage replaces tags such #LIST_OF_PRODUCTS#. There times that tags are hidden (for example in a link title, JS, CSS or AJAX code). With Finding patterns you will find quickly all of them. You can use your own regular expressions so you can find any pattern you need.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Finding patterns |
ID | fikfnienebmgobclladdionkabigeico |
URL Chính Thức | https://chromewebstore.google.com/detail/finding-patterns/fikfnienebmgobclladdionkabigeico |
Mô tả | Look for patterns inside HTML, JS, CSS and AJAX code |
Kích Thước Tệp | 171 KB |
Số Lần Cài Đặt | 637 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2013-02-12 |
Ngày Phát Hành | 2013-02-12 |
Đánh Giá | 3.20/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | carlosV2 |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Finding patterns", "version": "1.1", "manifest_version": 2, "description": "Look for patterns inside HTML, JS, CSS and AJAX code", "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "42": "icons\/icon42.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "constants.js", "background.js" ] }, "page_action": { "default_icon": "icons\/icon19.png", "default_title": "Checking...", "default_popup": "popup.html" }, "web_accessible_resources": [ "ajaxinspector.js" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "options_page": "options.html", "permissions": [ "tabs", "*:\/\/*\/*" ] } |