Lightning Extension

Enhance productivity with new add-on features

Τι είναι το Lightning Extension;

Το Lightning Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Salesforce, και η κύρια λειτουργία του είναι "Enhance productivity with new add-on features".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Lightning Extension

Λήψη αρχείων επέκτασης Lightning Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Lightning Extension is a library of features created by the Lightning Product Management team at Salesforce. This extension is designed to complement the user experience with continuous productivity feature releases. These features provide end users with rich enhancements that aren’t available out-of-the-box with Lightning, like Dark Mode.

Admins can control which features are made available to their users. To control access to features, from Setup, in the Quick Find box, enter Lightning Extension, and then select Lightning Extension. From there, you can change your users’ access to individual features, or access to the extension itself. Changes can take up to 24 hours to take effect.

Note: Dark mode is temporarily disabled. We’re working to make it available again.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Lightning Extension Lightning Extension
ID hfglcknhngdnhbkccblidlkljgflofgh
Επίσημο URL https://chromewebstore.google.com/detail/lightning-extension/hfglcknhngdnhbkccblidlkljgflofgh
Περιγραφή Enhance productivity with new add-on features
Μέγεθος Αρχείου 1.54 MB
Αριθμός Εγκαταστάσεων 136,283
Τρέχουσα Έκδοση 3.1.0
Τελευταία Ενημέρωση 2022-11-29
Ημερομηνία Δημοσίευσης 2020-04-13
Αξιολόγηση 2.70/5 Συνολικά 99 Αξιολογήσεις
Προγραμματιστής Salesforce
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://help.salesforce.com/articleView?id=lex_lightning_extension.htm
URL της Σελίδας Πολιτικής Απορρήτου http://www.salesforce.com/company/privacy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Lightning Extension",
    "version": "3.1.0",
    "version_name": "3.1.0",
    "description": "Enhance productivity with new add-on features",
    "icons": {
        "16": "images\/LL_main_16.png",
        "48": "images\/LL_main_48.png",
        "128": "images\/LL_main_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*",
        "*:\/\/*.force.com\/*",
        "*:\/\/*.salesforce.com\/*",
        "*:\/\/*.visualforce.com\/*"
    ],
    "permissions": [
        "cookies",
        "scripting",
        "storage",
        "webNavigation",
        "webRequest",
        "management",
        "unlimitedStorage"
    ],
    "optional_permissions": [
        "tabs"
    ],
    "action": {
        "default_icon": {
            "16": "images\/LL_main_16.png",
            "48": "images\/LL_main_48.png",
            "128": "images\/LL_main_128.png"
        },
        "default_title": "Lightning Extension",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+E",
                "mac": "Command+E",
                "linux": "Ctrl+Q"
            }
        },
        "toggle-darkmode": {
            "description": "Toggle Dark Mode",
            "suggested_key": {
                "default": "Alt+Period",
                "mac": "Alt+Period"
            }
        }
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.visualforce.com\/*"
            ],
            "run_at": "document_start",
            "match_about_blank": true,
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dashboard.html",
                "permcheck-web-script.js",
                "images\/LL_main_128.png",
                "images\/LL_main_16.png",
                "images\/LL_main_32.png",
                "images\/LL_main_48.png",
                "web-scripts\/component-manager-get-cmps.js",
                "web-scripts\/component-manager-history-state.js",
                "web-scripts\/component-manager-web-script.js",
                "web-styles\/component-manager.css",
                "images\/ComponentCus_UI_active.png",
                "images\/ComponentCus_UI_hover.png",
                "images\/ComponentCus_UI_rest.png",
                "images\/LL_ComponentMgr_32_disable.png",
                "images\/LL_ComponentMgr_32.png",
                "images\/checkbox_checked.png",
                "images\/checkbox_unchecked.png",
                "images\/LL_DarkMode_32_disable.png",
                "images\/LL_DarkMode_32.png",
                "images\/menuitem-check.png",
                "images\/Summer_19.svg",
                "styles\/overrides.css",
                "images\/LL_TabGrabber_32_disable.png",
                "images\/LL_TabGrabber_32.png"
            ],
            "matches": [
                "*:\/\/*.force.com\/*",
                "*:\/\/*.salesforce.com\/*",
                "*:\/\/*.visualforce.com\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
    }
}