Custom Elements Locator
This extension will find any custom element on a page.
Custom Elements Locator là gì?
Custom Elements Locator là một tiện ích mở rộng Chrome được phát triển bởi pascalschilp, và tính năng chính của nó là "This extension will find any custom element on a page.".
Ả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 Custom Elements Locator
Tải xuống các tệp mở rộng Custom Elements Locator 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
Chrome extension to find custom elements on a page. Optionally, you can choose to save found custom elements to the database, and have them showcased on wild.open-wc.org, so long as the page is publicly available. No personal information is, or will ever be stored, and this feature is completely opt-in. Made with love by www.open-wc.org
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Custom Elements Locator |
ID | eccplgjbdhhakefbjfibfhocbmjpkafc |
URL Chính Thức | https://chromewebstore.google.com/detail/custom-elements-locator/eccplgjbdhhakefbjfibfhocbmjpkafc |
Mô tả | This extension will find any custom element on a page. |
Kích Thước Tệp | 3.46 MB |
Số Lần Cài Đặt | 225 |
Phiên Bản Hiện Tại | 1.6.0 |
Cập Nhật Lần Cuối | 2020-09-21 |
Ngày Phát Hành | 2020-08-03 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | pascalschilp |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.open-wc.org |
URL Trang Trợ Giúp | https://www.github.com/open-wc/locator |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom Elements Locator", "description": "This extension will find any custom element on a page.", "version": "1.6.0", "icons": { "16": "meta_assets\/icon16.png", "48": "meta_assets\/icon48.png", "128": "meta_assets\/icon128.png" }, "browser_action": { "default_icon": "meta_assets\/icon.png", "default_popup": "dist\/index.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "dist\/content_script.js" ], "run_at": "document_idle" } ], "background": { "scripts": [ "dist\/background_script.js" ] }, "permissions": [ "activeTab", "tabs", "storage", "background" ] } |