SSRS in Chrome

This will make SSRS reports visible in Google Chrome

Qu'est-ce que SSRS in Chrome ?

SSRS in Chrome est une extension Chrome développée par Alex Macy, et sa fonction principale est "This will make SSRS reports visible in Google Chrome".

Télécharger le fichier CRX de l'extension SSRS in Chrome

Téléchargez les fichiers d'extension SSRS in Chrome au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom SSRS in Chrome SSRS in Chrome
ID mcmknapfancdcboaebbfhadibffomkjk
URL Officiel https://chromewebstore.google.com/detail/ssrs-in-chrome/mcmknapfancdcboaebbfhadibffomkjk
Description This will make SSRS reports visible in Google Chrome
Taille du Fichier 23.78 KB
Nombre d'Installations 20,000
Version Actuelle 1.0
Dernière Mise à Jour 2017-05-20
Date de Publication 2017-05-20
Évaluation 4.81/5 Total 16 Évaluations
Développeur Alex Macy
Type de Paiement free
Site Web de l'Extension https://github.com/alexmacy/SSRS-in-Google-Chrome
URL de la Page d'Aide https://github.com/alexmacy/SSRS-in-Google-Chrome/blob/master/README.md
Langues Prises en Charge 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"
}