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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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