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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}