Gobstones Night Mode
Modo nocturno para Gobstones, el IDE web para aprender a programar.
Gobstones Night Mode là gì?
Gobstones Night Mode là một tiện ích mở rộng Chrome được phát triển bởi Amuro, và tính năng chính của nó là "Modo nocturno para Gobstones, el IDE web para aprender a programar.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Gobstones Night Mode
Tải xuống các tệp mở rộng Gobstones Night Mode dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Gobstones Night Mode is a Chrome extension that changes the colors and background on the web IDE for the Gobstones programming language (you can learn more about it here: https://github.com/gobstones).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Gobstones Night Mode |
ID | eddfllfofdmdhafjdocfkpcknflfgfbm |
URL Chính Thức | https://chromewebstore.google.com/detail/gobstones-night-mode/eddfllfofdmdhafjdocfkpcknflfgfbm |
Mô tả | Modo nocturno para Gobstones, el IDE web para aprender a programar. |
Kích Thước Tệp | 316 KB |
Số Lần Cài Đặt | 24 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2019-04-30 |
Ngày Phát Hành | 2019-04-30 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Amuro |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/amuroBosetti/GobstonesNightMode |
Ngôn Ngữ Được Hỗ Trợ | es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gobstones Night Mode", "version": "1.1", "description": "Modo nocturno para Gobstones, el IDE web para aprender a programar.", "permissions": [ "tabs", "https:\/\/gobstones.github.io\/*", "storage" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/gobstones.github.io\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": "images\/icon.png" }, "icons": { "256": "images\/icon.png" }, "manifest_version": 2 } |