Lightning-fast, real-time collaborative drawing tool for seamless creativity and teamwork.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"version": "2.2.0",
"name": "The Blackboard - Lightning-Fast Real-time Collaborative Drawing tool",
"description": "Lightning-fast, real-time collaborative drawing tool for seamless creativity and teamwork.",
"permissions": [
"tabs"
],
"chrome_url_overrides": {
"newtab": "index.html"
},
"content_scripts": [
{
"matches": [
"https://meet.google.com/*"
],
"exclude_matches": [
"https://meet.google.com/"
],
"js": [
"scripts/google/meet.js"
],
"run_at": "document_end"
}
],
"externally_connectable": {
"matches": [
"https://tryblackboard.com/*",
"http://localhost:3000/*"
]
},
"web_accessible_resources": [
{
"resources": [
"images/*.svg",
"scripts/*.js",
"index_realtime.html"
],
"matches": [
"https://meet.google.com/*"
]
}
],
"icons": {
"128": "assets/icons/store_icon.png"
},
"background": {
"service_worker": "scripts/background.js"
}
}