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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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 |
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" } |