Lightning Admin Menu

A simple drop-down to make navigating Lightning a bit easier.

Τι είναι το Lightning Admin Menu;

Το Lightning Admin Menu είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Chris Johnson, και η κύρια λειτουργία του είναι "A simple drop-down to make navigating Lightning a bit easier.".

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

screenshot
screenshot

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

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

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

                        This extension creates a dropdown menu in Salesforce Lightning that makes it easier for administrators to navigate to various pages (e.g. Classic Setup, Recycle Bin, Workbench, etc.). Currently, the extension allows you to easily navigate to:

Development
- Developer Console
- Workbench (Including an automatic login feature)
- Component Library (unique to your org)
- Lightning Design System
- Aura Documentation

Setup
  - Classic Setup (without requiring you to switch to Classic)
  - Lightning Setup
  - Object Manager

Other
  - Recycle Bin
  - Up to 5 custom URLs -- either full URLs (e.g. https://developer.salesforce.com) or relative URLs (e.g. /lightning/setup/ManageUsers/home)

System
  - Switch to Classic
  - Logout

The menu is be opened by clicking the Salesforce (or custom) logo in the Salesforce header on any Lightning page. Menu items can be shown/hidden through the "Options" dialog (right-click the icon and choose "Options...").

The extension requires access to Salesforce Lightning pages (to embed the menu) and Workbench pages (for the automatic login feature). No actual Salesforce data is ever read by the extension.                    

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

Όνομα Lightning Admin Menu Lightning Admin Menu
ID apelhlenmamanenmgdafajgecjheomjf
Επίσημο URL https://chromewebstore.google.com/detail/lightning-admin-menu/apelhlenmamanenmgdafajgecjheomjf
Περιγραφή A simple drop-down to make navigating Lightning a bit easier.
Μέγεθος Αρχείου 42.52 KB
Αριθμός Εγκαταστάσεων 194
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2018-08-23
Ημερομηνία Δημοσίευσης 2018-08-23
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Chris Johnson
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lightning Admin Menu",
    "version": "1.0",
    "description": "A simple drop-down to make navigating Lightning a bit easier.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.lightning.force.com\/*"
            ],
            "js": [
                "thirdParty\/jquery-3.3.1.min.js",
                "lightningContentScript.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/workbench.developerforce.com\/login.php*"
            ],
            "js": [
                "thirdParty\/jquery-3.3.1.min.js",
                "workbenchContentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "page_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "manifest_version": 2
}