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.".
Снимки экрана расширения
Скачать файл CRX расширения Salesforce.com Sandbox Favicon Extension
Скачайте файлы расширений Salesforce.com Sandbox Favicon Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
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 |
URL страницы помощи | 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" ] } ] } |