SSRS in Chrome
This will make SSRS reports visible in Google Chrome
Что такое SSRS in Chrome?
SSRS in Chrome - это расширение Chrome, разработанное Alex Macy, и его основная функция - "This will make SSRS reports visible in Google Chrome".
Скачать файл CRX расширения SSRS in Chrome
Скачайте файлы расширений SSRS in Chrome в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension fixes a a known issue with how the report is rendered in the browser. SSRS reports were designed to be viewed in Microsoft products, so this issue is due to Chrome rendering a certain style attribute differently than Internet Explorer.
Основная информация о расширении
Название | SSRS in Chrome |
ID | mcmknapfancdcboaebbfhadibffomkjk |
Официальный URL | https://chromewebstore.google.com/detail/ssrs-in-chrome/mcmknapfancdcboaebbfhadibffomkjk |
Описание | This will make SSRS reports visible in Google Chrome |
Размер файла | 23.78 KB |
Количество установок | 20,000 |
Текущая Версия | 1.0 |
Последнее Обновление | 2017-05-20 |
Дата публикации | 2017-05-20 |
Рейтинг | 4.81/5 Всего 16 оценок |
Разработчик | Alex Macy |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/alexmacy/SSRS-in-Google-Chrome |
URL страницы помощи | https://github.com/alexmacy/SSRS-in-Google-Chrome/blob/master/README.md |
Поддерживаемые языки | en-US |
manifest.json | |
{ "manifest_version": 2, "name": "SSRS in Chrome", "author": "Alex Macy", "version": "1.0", "icons": { "16": "logo_16.png", "48": "logo_48.png", "128": "logo_128.png", "256": "logo_256.png" }, "description": "This will make SSRS reports visible in Google Chrome", "content_scripts": [ { "js": [ "script.js" ], "matches": [ "http:\/\/*\/Reports\/Pages\/Report.aspx*", "https:\/\/*\/Reports\/Pages\/Report.aspx*" ] } ], "page_action": { "default_icon": { "16": "logo_16.png", "48": "logo_48.png", "128": "logo_128.png", "256": "logo_256.png" }, "default_title": "SSRS in Chrome" }, "permissions": [ "activeTab" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx" } |