SSRS in Chrome

This will make SSRS reports visible in Google Chrome

What is SSRS in Chrome?

SSRS in Chrome is a Chrome extension developed by Alex Macy, and its main feature is "This will make SSRS reports visible in Google Chrome".

Download SSRS in Chrome Extension CRX File

Download SSRS in Chrome extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name SSRS in Chrome SSRS in Chrome
ID mcmknapfancdcboaebbfhadibffomkjk
Official URL https://chromewebstore.google.com/detail/ssrs-in-chrome/mcmknapfancdcboaebbfhadibffomkjk
Description This will make SSRS reports visible in Google Chrome
File Size 23.78 KB
Installation Count 20,000
Current Version 1.0
Last Updated 2017-05-20
Publish Date 2017-05-20
Rating 4.81/5 Total 16 Ratings
Developer Alex Macy
Payment Type free
Extension Website https://github.com/alexmacy/SSRS-in-Google-Chrome
Help Page URL https://github.com/alexmacy/SSRS-in-Google-Chrome/blob/master/README.md
Supported Languages 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"
}