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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get better options using replit team. You can easily navigate throught the log of change and download files."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Repl.it PLUS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}