SSRS in Chrome
This will make SSRS reports visible in Google Chrome
什麼是SSRS in Chrome?
SSRS in Chrome是由Alex Macy開發的Chrome擴展程式,該擴展的主要功能是“This will make SSRS reports visible in Google Chrome”。
下載SSRS in Chrome擴展crx文件
下載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 |
官方網址 | 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" } |