Codeanywhere IDE
Helper for launching Codeanywhere.
Codeanywhere IDE là gì?
Codeanywhere IDE là một tiện ích mở rộng Chrome được phát triển bởi Matt Rudge, và tính năng chính của nó là "Helper for launching Codeanywhere.".
Ả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 Codeanywhere IDE
Tải xuống các tệp mở rộng Codeanywhere IDE 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
Unofficial helper extension for launching a Codeanywhere workspace from a GitHub repository
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Codeanywhere IDE |
ID | khibngadbedomfojmmblgdphangeninf |
URL Chính Thức | https://chromewebstore.google.com/detail/codeanywhere-ide/khibngadbedomfojmmblgdphangeninf |
Mô tả | Helper for launching Codeanywhere. |
Kích Thước Tệp | 20.51 KB |
Số Lần Cài Đặt | 354 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2023-03-31 |
Ngày Phát Hành | 2023-03-31 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Matt Rudge |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://lechien73.githob.io/cae |
URL Trang Trợ Giúp | https://lechien73.githob.io/cae |
URL Trang Chính Sách Bảo Mật | https://mattrudge.net/privacy.html |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Codeanywhere IDE", "description": "Helper for launching Codeanywhere.", "version": "1.0.0", "action": { "default_title": "Codeanywhere IDE Helper" }, "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*", "*:\/\/*.github.com\/*\/*" ], "js": [ "js\/cae_content.js" ] } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon48.png", "128": "images\/icon128.png" } } |