Blocklive: Scratch Realtime Collaboration

Multiple Scratchers Work together in Real Time on a Single Project

什么是Blocklive: Scratch Realtime Collaboration?

Blocklive: Scratch Realtime Collaboration是由meechapooch开发的Chrome扩展程序,该扩展的主要功能是“Multiple Scratchers Work together in Real Time on a Single Project”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Blocklive: Scratch Realtime Collaboration扩展crx文件

下载Blocklive: Scratch Realtime Collaboration扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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