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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | 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-...'" } |