Repl.it PLUS
Get better options using replit team. You can easily navigate throught the log of change and download files.
Repl.it PLUS là gì?
Repl.it PLUS là một tiện ích mở rộng Chrome được phát triển bởi rafariva, và tính năng chính của nó là "Get better options using replit team. You can easily navigate throught the log of change and download files.".
Ả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 Repl.it PLUS
Tải xuống các tệp mở rộng Repl.it PLUS 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
This extension adds an option for downloading all work files. It also allows you to navigate through log history for easy inspection of the code.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Repl.it PLUS |
ID | chhdkmihiojohkmilbmclmnbbnhaiick |
URL Chính Thức | https://chromewebstore.google.com/detail/replit-plus/chhdkmihiojohkmilbmclmnbbnhaiick |
Mô tả | Get better options using replit team. You can easily navigate throught the log of change and download files. |
Kích Thước Tệp | 539 KB |
Số Lần Cài Đặt | 18 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2022-07-14 |
Ngày Phát Hành | 2021-08-31 |
Nhà Phát Triển | rafariva |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Repl.it PLUS", "version": "1.5", "manifest_version": 3, "description": "Get better options using replit team. You can easily navigate throught the log of change and download files.", "background": "background.html", "browser_action": { "name": "REPLIT PLUS", "icons": [ "icon.png" ], "default_icon": "icon.png", "default_title": "View status", "default_popup": "popup.html" }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "jquery.min.js", "replit_hist.js" ], "matches": [ "https:\/\/replit.com\/*\/history*", "https:\/\/replit.com\/*\/templates\/*", "https:\/\/replit.com\/*#main.py*", "https:\/\/replit.com\/team\/*", "https:\/\/replit.com\/@*\/*" ], "run_at": "document_end" } ] } |