widget.io
A simple Streamelements addon to automate and simplify widget import and export.
widget.ioคืออะไร?
widget.io เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sigma และคุณลักษณะหลักของมันคือ "A simple Streamelements addon to automate and simplify widget import and export."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย widget.io
ดาวน์โหลดไฟล์ส่วนขยาย widget.io ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
widget.io streamlines the process of working with custom widgets in Streamelements. The default process requires users to manually copy and paste downloaded code into (or from, if you are a developer) the editor inside Streamelements, which is a very common source of errors. widget.io enables the user (or the developer) to select a ZIP archive with the source code, and the program will automatically set the widget up. In the same fashion, any custom widget can be automatically downloaded into one single ZIP archive that the developers can then redistribute. Changelog: v1.1 (Jan 18, 2023): -- Added support for widget field data tab -- Added support for widgets with missing files -- Added widget package checks: errors and prompts manual upload for incorrectly set up widgets. -- Fixed manual upload not working after reopening the window -- Minor fixes v1.0 (Jan 13, 2023): -- Initial release
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | widget.io |
ID | fcgbjpajcfjnjgfdeookpnoefgcliljj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/widgetio/fcgbjpajcfjnjgfdeookpnoefgcliljj |
คำอธิบาย | A simple Streamelements addon to automate and simplify widget import and export. |
ขนาดไฟล์ | 79.34 KB |
จำนวนการติดตั้ง | 8,590 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2023-01-23 |
วันที่เผยแพร่ | 2023-01-23 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Sigma |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "widget.io", "version": "1.1", "description": "A simple Streamelements addon to automate and simplify widget import and export.", "manifest_version": 3, "author": "Sigma", "permissions": [], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_popup": "popup.html", "default_title": "widget.io" }, "content_scripts": [ { "matches": [ "https:\/\/*.streamelements.com\/overlay\/*" ], "js": [ "js\/jquery-3.6.3.min.js", "js\/jszip.min.js", "js\/FileSaver.js", "script.js" ] } ], "web_accessible_resources": [ { "resources": [ "js\/jszip.min.js", "js\/FileSaver.js", "handleCode.js" ], "matches": [ "https:\/\/streamelements.com\/*" ] } ] } |