Salesforce Lightning Web Component Extractor

Salesforce Lightning Web Component Extractor

Τι είναι το Salesforce Lightning Web Component Extractor;

Το Salesforce Lightning Web Component Extractor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον saurabh21896, και η κύρια λειτουργία του είναι "Salesforce Lightning Web Component Extractor".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Salesforce Lightning Web Component Extractor

Λήψη αρχείων επέκτασης 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 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-...'"
}