Salesforce Lightning Web Component Extractor
Salesforce Lightning Web Component Extractor
Salesforce Lightning Web Component Extractor क्या है?
Salesforce Lightning Web Component Extractor saurabh21896 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Salesforce Lightning Web Component Extractor"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Salesforce Lightning Web Component Extractor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 एक्सटेंशन की मूल जानकारी
| नाम | |
| 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-...'"
} | |