Repl.it PLUS
Get better options using replit team. You can easily navigate throught the log of change and download files.
O que é Repl.it PLUS?
Repl.it PLUS é uma extensão do Chrome desenvolvida por rafariva, e sua principal característica é "Get better options using replit team. You can easily navigate throught the log of change and download files.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Repl.it PLUS
Baixe arquivos de extensão Repl.it PLUS no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Repl.it PLUS |
ID | chhdkmihiojohkmilbmclmnbbnhaiick |
URL Oficial | https://chromewebstore.google.com/detail/replit-plus/chhdkmihiojohkmilbmclmnbbnhaiick |
Descrição | Get better options using replit team. You can easily navigate throught the log of change and download files. |
Tamanho do Arquivo | 539 KB |
Contagem de Instalações | 18 |
Versão Atual | 1.5 |
Última Atualização | 2022-07-14 |
Data de Publicação | 2021-08-31 |
Desenvolvedor | rafariva |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } ] } |