Salesforce.com Sandbox Favicon Extension

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

ما هو Salesforce.com Sandbox Favicon Extension؟

Salesforce.com Sandbox Favicon Extension هو إضافة Chrome تم تطويرها بواسطة Joe Ferraro، والميزة الرئيسية لها هي "Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Salesforce.com Sandbox Favicon Extension

قم بتنزيل ملفات الامتداد Salesforce.com Sandbox Favicon Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Salesforce.com Sandbox Favicon Extension Salesforce.com Sandbox Favicon Extension
ID nkfllgjejgfgcddfccnijhndhdmjkamf
عنوان URL الرسمي https://chrome.google.com/webstore/detail/salesforcecom-sandbox-fav/nkfllgjejgfgcddfccnijhndhdmjkamf
الوصف Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.
حجم الملف 40.93 KB
عدد التثبيتات 3,000
النسخة الحالية 1.6
آخر تحديث 2015-07-20
تاريخ النشر 2015-07-20
تقييم 4.72/5 مجموع تقييمات 64
المطور Joe Ferraro
نوع الدفع free
عنوان صفحة المساعدة https://github.com/joeferraro/sfdc_sbox_chrome_extension
اللغات المدعومة 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"
            ]
        }
    ]
}