Salesforce smart setup navigation

Tool designed to make salesforce setup navigation much easier. It allows to add more tabs to setup quick navbar.

Что такое Salesforce smart setup navigation?

Salesforce smart setup navigation - это расширение Chrome, разработанное przemek.gonda, и его основная функция - "Tool designed to make salesforce setup navigation much easier. It allows to add more tabs to setup quick navbar.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Salesforce smart setup navigation

Скачайте файлы расширений Salesforce smart setup navigation в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        If you want to have more tabs on your quick navigation bar in the Salesforce Setup page, this extensions is made for you. Instead of having only Home and Object Manager tabs you will have possibility to add most used tabs to that navbar. Just click the settings button and add more tabs, then order them as you wish. Don't be afraid to add too many tabs, as the navbar is horizontal scrollable from now.

Featured updates:
1.1.x - donate button to support further development
1.2.x -  settings are stored in chrome extension storage                    

Основная информация о расширении

Название Salesforce smart setup navigation Salesforce smart setup navigation
ID pcfcnkkjfmcncimnkdigpkjhagmdkbnj
Официальный URL https://chromewebstore.google.com/detail/salesforce-smart-setup-na/pcfcnkkjfmcncimnkdigpkjhagmdkbnj
Описание Tool designed to make salesforce setup navigation much easier. It allows to add more tabs to setup quick navbar.
Размер файла 7.06 KB
Количество установок 142
Текущая Версия 1.2.0
Последнее Обновление 2022-04-28
Дата публикации 2022-04-23
Рейтинг 5.00/5 Всего 3 оценок
Разработчик przemek.gonda
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce smart setup navigation",
    "description": "Tool designed to make salesforce setup navigation much easier. It allows to add more tabs to setup quick navbar.",
    "version": "1.2.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.lightning.force.com\/lightning\/setup\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ]
}