SSRS in Chrome
This will make SSRS reports visible in Google Chrome
ما هو SSRS in Chrome؟
SSRS in Chrome هو إضافة Chrome تم تطويرها بواسطة Alex Macy، والميزة الرئيسية لها هي "This will make SSRS reports visible in Google Chrome".
تحميل ملف CRX للإضافة SSRS in Chrome
قم بتنزيل ملفات الامتداد SSRS in Chrome بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة المساعدة | 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" } |