Salesforce Zebra Striped Reports

Adds alternating colors and hover effects to rows in Salesforce tabular and summary reports.

Что такое Salesforce Zebra Striped Reports?

Salesforce Zebra Striped Reports - это расширение Chrome, разработанное https://sparkorange.net, и его основная функция - "Adds alternating colors and hover effects to rows in Salesforce tabular and summary reports.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Salesforce Zebra Striped Reports

Скачайте файлы расширений Salesforce Zebra Striped Reports в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension adds alternating colors and hover effects to tabular and summary reports in Salesforce, making them easier to read. No setup required; just install it and you're good to go!                    

Основная информация о расширении

Название Salesforce Zebra Striped Reports Salesforce Zebra Striped Reports
ID chalefhfkbbffihedbcedaecadiopnfm
Официальный URL https://chromewebstore.google.com/detail/salesforce-zebra-striped/chalefhfkbbffihedbcedaecadiopnfm
Описание Adds alternating colors and hover effects to rows in Salesforce tabular and summary reports.
Размер файла 25.19 KB
Количество установок 85
Текущая Версия 1.0
Последнее Обновление 2014-03-03
Дата публикации 2014-03-03
Рейтинг 4.00/5 Всего 4 оценок
Разработчик https://sparkorange.net
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce Zebra Striped Reports",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Adds alternating colors and hover effects to rows in Salesforce tabular and summary reports.",
    "icons": {
        "16": "so-icon.png",
        "48": "so-icon.png",
        "128": "so-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "zebra-stripe.js"
            ],
            "css": [
                "zebra-stripe.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "zebra-stripe.css"
    ]
}