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 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"
}