Salesforce Lightning Web Component Extractor
Salesforce Lightning Web Component Extractor
Qu'est-ce que Salesforce Lightning Web Component Extractor ?
Salesforce Lightning Web Component Extractor est une extension Chrome développée par saurabh21896, et sa fonction principale est "Salesforce Lightning Web Component Extractor".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Salesforce Lightning Web Component Extractor
Téléchargez les fichiers d'extension Salesforce Lightning Web Component Extractor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Salesforce Lightning Web Component Extractor |
ID | acfmhnkhdnojjohflchbldekihhapdje |
URL Officiel | https://chromewebstore.google.com/detail/salesforce-lightning-web/acfmhnkhdnojjohflchbldekihhapdje |
Description | Salesforce Lightning Web Component Extractor |
Taille du Fichier | 162 KB |
Nombre d'Installations | 1,020 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2021-03-13 |
Date de Publication | 2021-03-10 |
Développeur | saurabh21896 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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-...'" } |