Salesforce.com Sandbox Favicon Extension

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

Qu'est-ce que Salesforce.com Sandbox Favicon Extension ?

Salesforce.com Sandbox Favicon Extension est une extension Chrome développée par Joe Ferraro, et sa fonction principale est "Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Salesforce.com Sandbox Favicon Extension

Téléchargez les fichiers d'extension Salesforce.com Sandbox Favicon Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Salesforce.com Sandbox Favicon Extension Salesforce.com Sandbox Favicon Extension
ID nkfllgjejgfgcddfccnijhndhdmjkamf
URL Officiel https://chrome.google.com/webstore/detail/salesforcecom-sandbox-fav/nkfllgjejgfgcddfccnijhndhdmjkamf
Description Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.
Taille du Fichier 40.93 KB
Nombre d'Installations 3,000
Version Actuelle 1.6
Dernière Mise à Jour 2015-07-20
Date de Publication 2015-07-20
Évaluation 4.72/5 Total 64 Évaluations
Développeur Joe Ferraro
Type de Paiement free
URL de la Page d'Aide https://github.com/joeferraro/sfdc_sbox_chrome_extension
Langues Prises en Charge 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"
            ]
        }
    ]
}