Blocklive: Scratch Realtime Collaboration

Multiple Scratchers Work together in Real Time on a Single Project

Blocklive: Scratch Realtime Collaboration क्या है?

Blocklive: Scratch Realtime Collaboration meechapooch द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Multiple Scratchers Work together in Real Time on a Single Project"।

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

screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Blocklive: Scratch Realtime Collaboration एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Ever wanted to collab on a scratch project with someone, but you realize that its frickin hard cause you have to repeatedly remix and share eachother's projects uggghgghggg!

Your struggle is over! 
Welcome to BLOCKLIVE! This extension uses websockets to sync project changes in REAL TIME! Its super simple to share a project with any number of people, and everything syncs, including:
- Blockly changes (create, move, change, comments, vars, lists etc...)
- Asset uploads, Vector and Bitmap Edits
- Name changes
- Like.. everything else...

Install Today! [ It does not read any of your cookies/tokens and will only sync projects that you tell it to ]
Created by MeechaPooch (@ilhp10 on scratch)
Support creator: https://www.buymeacoffee.com/ilhp10
[Discord, support and creator links are in the extension popup]                    

एक्सटेंशन की मूल जानकारी

नाम Blocklive: Scratch Realtime Collaboration Blocklive: Scratch Realtime Collaboration
ID gelkmljpoacdjkjkcfekkmgkpnmeomlk
आधिकारिक URL https://chromewebstore.google.com/detail/blocklive-scratch-realtim/gelkmljpoacdjkjkcfekkmgkpnmeomlk
विवरण Multiple Scratchers Work together in Real Time on a Single Project
फ़ाइल का आकार 228 KB
स्थापना संख्या 20,000
वर्तमान संस्करण 0.1.8.6
अंतिम अपडेट 2023-11-06
प्रकाशन तिथि 2022-03-07
रेटिंग 3.79/5 कुल 90 रेटिंग्स
डेवलपर meechapooch
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://sites.google.com/catlin.edu/blocklive-quickstart-guide/home
सहायता पृष्ठ URL https://www.buymeacoffee.com/ilhp10
गोपनीयता नीति पृष्ठ URL https://sites.google.com/catlin.edu/blocklive-quickstart-guide/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blocklive: Scratch Realtime Collaboration",
    "description": "Multiple Scratchers Work together in Real Time on a Single Project",
    "version": "0.1.8.6",
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scratch.mit.edu\/projects*"
            ],
            "css": [],
            "js": [
                "injectors\/editor.js"
            ]
        },
        {
            "matches": [
                "https:\/\/scratch.mit.edu\/mystuff*"
            ],
            "css": [],
            "js": [
                "injectors\/mystuff.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/scratch.mit.edu\/"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/scripts\/editor.js",
                "\/scripts\/vm.js",
                "\/scripts\/mystuff.js",
                "\/scripts\/turbowarp_editor.js",
                "img\/blocklivefullres.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/scratch.mit.edu\/*"
        ]
    },
    "action": {
        "default_popup": "popups\/popup.html"
    }
}