SSRS in Chrome
This will make SSRS reports visible in Google Chrome
Apa itu SSRS in Chrome?
SSRS in Chrome adalah ekstensi Chrome yang dikembangkan oleh Alex Macy, dan fitur utamanya adalah "This will make SSRS reports visible in Google Chrome".
Unduh Berkas CRX Ekstensi SSRS in Chrome
Unduh file ekstensi SSRS in Chrome dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | SSRS in Chrome |
ID | mcmknapfancdcboaebbfhadibffomkjk |
URL Resmi | https://chromewebstore.google.com/detail/ssrs-in-chrome/mcmknapfancdcboaebbfhadibffomkjk |
Deskripsi | This will make SSRS reports visible in Google Chrome |
Ukuran File | 23.78 KB |
Jumlah Instalasi | 20,000 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2017-05-20 |
Tanggal Publikasi | 2017-05-20 |
Penilaian | 4.81/5 Total 16 Penilaian |
Pengembang | Alex Macy |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/alexmacy/SSRS-in-Google-Chrome |
URL Halaman Bantuan | https://github.com/alexmacy/SSRS-in-Google-Chrome/blob/master/README.md |
Bahasa yang Didukung | 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" } |