Swagger Inspector Extension
Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection
Swagger Inspector Extensionคืออะไร?
Swagger Inspector Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://inspector.swagger.io และคุณลักษณะหลักของมันคือ "Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Swagger Inspector Extension
ดาวน์โหลดไฟล์ส่วนขยาย Swagger Inspector Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Swagger Inspector Extension |
ID | biemppheiopfggogojnfpkngdkchelik |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/swagger-inspector-extensi/biemppheiopfggogojnfpkngdkchelik |
คำอธิบาย | Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection |
ขนาดไฟล์ | 41.9 KB |
จำนวนการติดตั้ง | 58,388 |
เวอร์ชันปัจจุบัน | 2.2.0 |
อัปเดตครั้งล่าสุด | 2019-01-03 |
วันที่เผยแพร่ | 2019-01-03 |
คะแนน | 3.71/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | https://inspector.swagger.io |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Swagger Inspector Extension", "description": "Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection", "version": "2.2.0", "homepage_url": "https:\/\/inspector.swagger.io", "background": { "persistent": true, "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.inspector.swagger.io\/*", "https:\/\/*.inspector.swagger.io\/*", "http:\/\/*.alertsite.com\/*", "https:\/\/*.alertsite.com\/*" ], "js": [ "src\/inject-extension-installed.js" ] } ], "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "browser_action": { "default_icon": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "default_title": "Swagger Inspector Extension" }, "permissions": [ "http:\/\/*\/", "https:\/\/*\/", "contextMenus", "webRequest", "webRequestBlocking" ], "externally_connectable": { "matches": [ "*:\/\/*.inspector.swagger.io\/*", "*:\/\/*.inspector.swagger.io:*\/*", "*:\/\/*.alertsite.com\/*", "*:\/\/*.alertsite.com:*\/*" ] }, "web_accessible_resources": [ "images\/16.png", "images\/24.png", "images\/32.png", "images\/48.png", "images\/128.png" ] } |