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