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 - это расширение Chrome, разработанное rafariva, и его основная функция - "Get better options using replit team. You can easily navigate throught the log of change and download files.".
Снимки экрана расширения
Скачать файл CRX расширения Repl.it PLUS
Скачайте файлы расширений 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" } ] } |