SSRS Report Fix

This extension allows Microsoft Reporting Services reports to render correctly in Google Chrome.

Что такое SSRS Report Fix?

SSRS Report Fix - это расширение Chrome, разработанное Isaac Moore, и его основная функция - "This extension allows Microsoft Reporting Services reports to render correctly in Google Chrome.".

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

screenshot

Скачать файл CRX расширения SSRS Report Fix

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

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

                        This is a simple extension that automatically fixes a CSS oversight on Microsoft's part that results in SSRS reports appearing as a blank white page in all modern web browsers.

If you are attempting to view Microsoft Reporting Services reports using Google Chrome and all that you see is a blank page, this extension will solve your problem.                    

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

Название SSRS Report Fix SSRS Report Fix
ID fjbdfjiheheafbioiejbdpalmojkeobk
Официальный URL https://chromewebstore.google.com/detail/ssrs-report-fix/fjbdfjiheheafbioiejbdpalmojkeobk
Описание This extension allows Microsoft Reporting Services reports to render correctly in Google Chrome.
Размер файла 7.82 KB
Количество установок 26,087
Текущая Версия 1.0
Последнее Обновление 2016-06-17
Дата публикации 2016-06-16
Рейтинг 3.28/5 Всего 29 оценок
Разработчик Isaac Moore
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/rmsy/SSRS-Fix
URL страницы помощи https://github.com/rmsy/SSRS-Fix/Issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SSRS Report Fix",
    "version": "1.0",
    "author": "Isaac Moore",
    "description": "This extension allows Microsoft Reporting Services reports to render correctly in Google Chrome.",
    "icons": {
        "16": "resources\/icons\/icon-16.png",
        "32": "resources\/icons\/icon-32.png",
        "64": "resources\/icons\/icon-64.png",
        "128": "resources\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "css-inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}