Salesforce Lightning Web Component Extractor
Salesforce Lightning Web Component Extractor
Salesforce Lightning Web Component Extractorคืออะไร?
Salesforce Lightning Web Component Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย saurabh21896 และคุณลักษณะหลักของมันคือ "Salesforce Lightning Web Component Extractor"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Lightning Web Component Extractor
ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Lightning Web Component Extractor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Click the extension to view all the list of Lightning Web Components in your org in a separate chrome tab Select any Lightning Web Component within your ORG Extract and View all the files of your LWC Component(HTML,JS,XML,CSS) within the extension without using the VS Code Export the selected LWC in a ZIP folder containing all files Extract the folder to view the files in the same standard format like ComponentName.Extension Supports both Lightning and Classic experience
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Salesforce Lightning Web Component Extractor |
ID | acfmhnkhdnojjohflchbldekihhapdje |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/salesforce-lightning-web/acfmhnkhdnojjohflchbldekihhapdje |
คำอธิบาย | Salesforce Lightning Web Component Extractor |
ขนาดไฟล์ | 162 KB |
จำนวนการติดตั้ง | 1,020 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2021-03-13 |
วันที่เผยแพร่ | 2021-03-10 |
ผู้พัฒนา | saurabh21896 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "browser_action": { "default_popup": "index.html", "default_icon": "lwc_logo_60.png" }, "description": "Salesforce Lightning Web Component Extractor", "manifest_version": 2, "name": "Salesforce Lightning Web Component Extractor", "permissions": [ "cookies", "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ], "version": "1.0.0", "icons": { "128": "lwc_128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "js": [ "js\/contentscript.js" ], "matches": [ "https:\/\/saurabhlwc123-dev-ed.lightning.force.com\/lightning\/page\/home" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-inline'; 'unsafe-eval'; object-src 'self' 'nonce-...'" } |