Salesforce Sandbox Version

Shows your salesforce sandbox version next to your sandbox host

Co to jest Salesforce Sandbox Version?

Salesforce Sandbox Version to rozszerzenie Chrome opracowane przez https://pcon.github.io, a jego główną funkcją jest „Shows your salesforce sandbox version next to your sandbox host”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Salesforce Sandbox Version

Pobierz pliki rozszerzeń Salesforce Sandbox Version w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Tired of having to manually look at what version your sandboxes are?  Well, let a computer do all that tedious work for you!  This extension will load an icon and alt text next to your instance name so you can see if the sandbox is a spring/summer/winter instance.                    

Podstawowe informacje o rozszerzeniu

Nazwa Salesforce Sandbox Version Salesforce Sandbox Version
ID lggmdcnfdkoogifabfihligfjinpaiom
Oficjalny URL https://chromewebstore.google.com/detail/salesforce-sandbox-versio/lggmdcnfdkoogifabfihligfjinpaiom
Opis Shows your salesforce sandbox version next to your sandbox host
Rozmiar pliku 66.49 KB
Liczba instalacji 65
Aktualna Wersja 1.1.2
Ostatnia Aktualizacja 2019-05-31
Data Publikacji 2019-05-30
Ocena 4.00/5 Łącznie 3 Oceny
Deweloper https://pcon.github.io
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce Sandbox Version",
    "short_name": "sandboxver",
    "version": "1.1.2",
    "description": "Shows your salesforce sandbox version next to your sandbox host",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "author": {
        "name": "Patrick Connelly",
        "email": "[email protected]",
        "url": "http:\/\/connelly.dev"
    },
    "permissions": [
        "https:\/\/*.salesforce.com\/07E*",
        "https:\/\/*.force.com\/lightning\/setup\/DataManagementCreateTestInstance\/home"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/07E*",
                "https:\/\/*.force.com\/lightning\/setup\/DataManagementCreateTestInstance\/home"
            ],
            "js": [
                "jquery.min.js",
                "axios.min.js",
                "q.js",
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "manifest_version": 2
}