Salesforce Utility
Utility tools for Salesforce
Что такое Salesforce Utility?
Salesforce Utility - это расширение Chrome, разработанное Matthew, и его основная функция - "Utility tools for Salesforce".
Скачать файл CRX расширения Salesforce Utility
Скачайте файлы расширений Salesforce Utility в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Current features:
v2.3.1
- Check all and uncheck all Read Only/Edit/Enabled in Permission Sets
v2.3
- Check all and uncheck all Read Only/Edit in Field Level Security in Profiles
v2.2.3
- View all APEX classes at once
- View all triggers at once
- View all VisualForce Pages at once
- Increase APEX Class coding height
- Static warning bar at top of page in production environment Основная информация о расширении
| Название | |
| ID | dlfabakdfnfmndnnmnmkebjhoaenkimp |
| Официальный URL | https://chromewebstore.google.com/detail/salesforce-utility/dlfabakdfnfmndnnmnmkebjhoaenkimp |
| Описание | Utility tools for Salesforce |
| Размер файла | 89.7 KB |
| Количество установок | 119 |
| Текущая Версия | 2.3.4 |
| Последнее Обновление | 2017-01-03 |
| Дата публикации | 2017-01-03 |
| Рейтинг | 3.00/5 Всего 2 оценок |
| Разработчик | Matthew |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Salesforce Utility",
"description": "Utility tools for Salesforce",
"version": "2.3.4",
"permissions": [
"webRequest",
"https:\/\/*.salesforce.com\/*",
"http:\/\/*.salesforce.com\/*"
],
"icons": {
"16": "logo.jpg",
"48": "logo.jpg",
"128": "logo.jpg"
},
"page_action": {
"default_icon": "logo.jpg"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.salesforce.com\/*",
"http:\/\/*.salesforce.com\/*"
],
"js": [
"jquery\/jquery.js",
"content-script.js"
]
}
]
} | |