Custom Elements Locator
This extension will find any custom element on a page.
Custom Elements Locatorคืออะไร?
Custom Elements Locator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pascalschilp และคุณลักษณะหลักของมันคือ "This extension will find any custom element on a page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Custom Elements Locator
ดาวน์โหลดไฟล์ส่วนขยาย Custom Elements Locator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | eccplgjbdhhakefbjfibfhocbmjpkafc |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/custom-elements-locator/eccplgjbdhhakefbjfibfhocbmjpkafc |
| คำอธิบาย | This extension will find any custom element on a page. |
| ขนาดไฟล์ | 3.46 MB |
| จำนวนการติดตั้ง | 225 |
| เวอร์ชันปัจจุบัน | 1.6.0 |
| อัปเดตครั้งล่าสุด | 2020-09-21 |
| วันที่เผยแพร่ | 2020-08-03 |
| คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
| ผู้พัฒนา | pascalschilp |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://www.open-wc.org |
| URL หน้าช่วยเหลือ | https://www.github.com/open-wc/locator |
| ภาษาที่รองรับ | 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"
]
} | |