Salesforce Lightning Web Component Extractor

Salesforce Lightning Web Component Extractor

Salesforce Lightning Web Component Extractor là gì?

Salesforce Lightning Web Component Extractor là một tiện ích mở rộng Chrome được phát triển bởi saurabh21896, và tính năng chính của nó là "Salesforce Lightning Web Component Extractor".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salesforce Lightning Web Component Extractor

Tải xuống các tệp mở rộng Salesforce Lightning Web Component Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salesforce Lightning Web Component Extractor Salesforce Lightning Web Component Extractor
ID acfmhnkhdnojjohflchbldekihhapdje
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-lightning-web/acfmhnkhdnojjohflchbldekihhapdje
Mô tả Salesforce Lightning Web Component Extractor
Kích Thước Tệp 162 KB
Số Lần Cài Đặt 1,020
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-03-13
Ngày Phát Hành 2021-03-10
Nhà Phát Triển saurabh21896
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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-...'"
}