Better3.0
Changes the way Scratch looks and feels with various options to customize it, like Dark Mode, Left Stage Layout or Compact Mode.
Better3.0คืออะไร?
Better3.0 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ucrash และคุณลักษณะหลักของมันคือ "Changes the way Scratch looks and feels with various options to customize it, like Dark Mode, Left Stage Layout or Compact Mode."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Better3.0
ดาวน์โหลดไฟล์ส่วนขยาย Better3.0 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Better3.0 - is an extension for scratch.mit.edu website, that makes it's editor looks better! It brings some cool customizable options, such as enabling Dark Theme, moving stage layout to the left and much much more! WHAT'S NEW IN 2.0: • This is a major update. It includes UI redesign, bug fixes and new options. • New feature: wrap text in items of the lists, instead of cutting it. FEATURES: ♦ Move Stage Layout to the Left Side of the Screen ♦ Enable Dark Theme in the Editor ♦ Increase Sprites List Area's size ♦ (Temporarily Disabled) Show Live Messages Counter on the editor page ♦ Show Remix Tree Button on the Projects Page ♦ Auto-hide blocks palette when no need ♦ (Beta) Make interface smaller with compact mode ♦ (Beta) Make text in list items wrap instead of disappear (If an item in the list is too long, the text in it would wrap to the next line, rather than being replaced with "...". Useful if you want to read the whole text.) More options will be coming in the newer versions! FEEDBACK: If you have any suggestions for the new options, or found a bug in the existing ones, please give us feedback through the email: [email protected] For more information, visit https://better30.github.io/info/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | gjoimmimmkpppgkhobhceblafkienddi |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/better30/gjoimmimmkpppgkhobhceblafkienddi |
คำอธิบาย | Changes the way Scratch looks and feels with various options to customize it, like Dark Mode, Left Stage Layout or Compact Mode. |
ขนาดไฟล์ | 22.05 KB |
จำนวนการติดตั้ง | 7,983 |
เวอร์ชันปัจจุบัน | 2.0 |
อัปเดตครั้งล่าสุด | 2021-03-07 |
วันที่เผยแพร่ | 2020-03-18 |
คะแนน | 3.89/5 รวมทั้งหมด 75 คะแนน |
ผู้พัฒนา | Ucrash |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://better30.github.io/download/ |
URL หน้าช่วยเหลือ | https://better30.github.io/policy/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better3.0", "description": "Changes the way Scratch looks and feels with various options to customize it, like Dark Mode, Left Stage Layout or Compact Mode.", "icons": { "36": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "version": "2.0", "browser_action": { "default_title": "Better3.0", "default_icon": "icon.png", "default_popup": "popup.html", "all_frames": true }, "content_scripts": [ { "matches": [ "https:\/\/scratch.mit.edu\/projects\/*", "https:\/\/api.scratch.mit.edu\/*" ], "js": [ "content.js" ] } ], "permissions": [ "storage" ] } |