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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Repl.it PLUS 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
        }
    ]
}