SSRS in Chrome

This will make SSRS reports visible in Google Chrome

SSRS in Chrome là gì?

SSRS in Chrome là một tiện ích mở rộng Chrome được phát triển bởi Alex Macy, và tính năng chính của nó là "This will make SSRS reports visible in Google Chrome".

Tải xuống tệp CRX của tiện ích mở rộng SSRS in Chrome

Tải xuống các tệp mở rộng SSRS in Chrome dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SSRS in Chrome SSRS in Chrome
ID mcmknapfancdcboaebbfhadibffomkjk
URL Chính Thức https://chromewebstore.google.com/detail/ssrs-in-chrome/mcmknapfancdcboaebbfhadibffomkjk
Mô tả This will make SSRS reports visible in Google Chrome
Kích Thước Tệp 23.78 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-05-20
Ngày Phát Hành 2017-05-20
Đánh Giá 4.81/5 Tổng số 16 Đánh Giá
Nhà Phát Triển Alex Macy
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/alexmacy/SSRS-in-Google-Chrome
URL Trang Trợ Giúp https://github.com/alexmacy/SSRS-in-Google-Chrome/blob/master/README.md
Ngôn Ngữ Được Hỗ Trợ 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"
}