SSRS in Chrome
This will make SSRS reports visible in Google Chrome
Co to jest SSRS in Chrome?
SSRS in Chrome to rozszerzenie Chrome opracowane przez Alex Macy, a jego główną funkcją jest „This will make SSRS reports visible in Google Chrome”.
Pobierz plik CRX rozszerzenia SSRS in Chrome
Pobierz pliki rozszerzeń SSRS in Chrome w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | SSRS in Chrome |
ID | mcmknapfancdcboaebbfhadibffomkjk |
Oficjalny URL | https://chromewebstore.google.com/detail/ssrs-in-chrome/mcmknapfancdcboaebbfhadibffomkjk |
Opis | This will make SSRS reports visible in Google Chrome |
Rozmiar pliku | 23.78 KB |
Liczba instalacji | 20,000 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2017-05-20 |
Data Publikacji | 2017-05-20 |
Ocena | 4.81/5 Łącznie 16 Oceny |
Deweloper | Alex Macy |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/alexmacy/SSRS-in-Google-Chrome |
Adres URL Strony Pomocy | https://github.com/alexmacy/SSRS-in-Google-Chrome/blob/master/README.md |
Obsługiwane Języki | 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" } |