Salesforce.com Sandbox Favicon Extension

Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.

Cos'è Salesforce.com Sandbox Favicon Extension?

Salesforce.com Sandbox Favicon Extension è un'estensione di Chrome sviluppata da Joe Ferraro, e la sua funzione principale è "Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Salesforce.com Sandbox Favicon Extension

Scarica i file di estensione Salesforce.com Sandbox Favicon Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Superimposes an "S" on the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.

UPDATE: also adds a prefix to the Salesforce.com tab, e.g.: (na13) Account: ABC Textiles

UPDATE 2: pod prefix in the tab title is now optional (off by default). right click the icon and select "options" to enable/disable the server pod option.                    

Informazioni di Base sull'Estensione

Nome Salesforce.com Sandbox Favicon Extension Salesforce.com Sandbox Favicon Extension
ID nkfllgjejgfgcddfccnijhndhdmjkamf
URL Ufficiale https://chrome.google.com/webstore/detail/salesforcecom-sandbox-fav/nkfllgjejgfgcddfccnijhndhdmjkamf
Descrizione Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.
Dimensione del File 40.93 KB
Conteggio Installazioni 3,000
Versione Corrente 1.6
Ultimo Aggiornamento 2015-07-20
Data di Pubblicazione 2015-07-20
Valutazione 4.72/5 Totale 64 Valutazioni
Sviluppatore Joe Ferraro
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/joeferraro/sfdc_sbox_chrome_extension
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce.com Sandbox Favicon Extension",
    "version": "1.6",
    "description": "Adds an \"S\" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.",
    "browser_action": {
        "default_icon": "salesforce.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.visual.force.com\/*"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ]
        }
    ]
}