Salesforce Lightning Web Component Extractor
Salesforce Lightning Web Component Extractor
什麼是Salesforce Lightning Web Component Extractor?
Salesforce Lightning Web Component Extractor是由saurabh21896開發的Chrome擴展程式,該擴展的主要功能是“Salesforce Lightning Web Component Extractor”。
擴展截圖
下載Salesforce Lightning Web Component Extractor擴展crx文件
下載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 |
官方網址 | 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-...'" } |