Repl.it PLUS
Get better options using replit team. You can easily navigate throught the log of change and download files.
什么是Repl.it PLUS?
Repl.it PLUS是由rafariva开发的Chrome扩展程序,该扩展的主要功能是“Get better options using replit team. You can easily navigate throught the log of change and download files.”。
扩展截图
下载Repl.it PLUS扩展crx文件
下载Repl.it PLUS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Repl.it PLUS |
ID | chhdkmihiojohkmilbmclmnbbnhaiick |
官方URL | https://chromewebstore.google.com/detail/replit-plus/chhdkmihiojohkmilbmclmnbbnhaiick |
简介 | Get better options using replit team. You can easily navigate throught the log of change and download files. |
文件大小 | 539 KB |
安装次数 | 18 |
当前版本 | 1.5 |
更新时间 | 2022-07-14 |
上架时间 | 2021-08-31 |
开发者 | rafariva |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } ] } |