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."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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"
        }
    ]
}