-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (39 loc) · 1.07 KB
/
manifest.json
File metadata and controls
39 lines (39 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"manifest_version": 3,
"name": "Scratch Copilot",
"version": "2.1.0",
"description": "AI-powered assistant for Scratch using Google Gemini — create sprites, add blocks, and control your project with natural language.",
"icons": {
"128": "icons/icon128.png"
},
"permissions": ["storage"],
"host_permissions": [
"https://scratch.mit.edu/*",
"https://assets.scratch.mit.edu/*",
"https://cdn.assets.scratch.mit.edu/*",
"https://cdn.jsdelivr.net/*",
"https://generativelanguage.googleapis.com/*"
],
"content_scripts": [
{
"matches": ["https://scratch.mit.edu/projects/*"],
"js": [
"src/logger.js",
"src/vmHook.js",
"src/vmController.js",
"src/assetManager.js",
"src/blockBuilder.js",
"src/spriteController.js",
"src/variableManager.js",
"src/extensionLoader.js",
"src/projectSerializer.js",
"src/debugPanel.js",
"src/aiClient.js",
"src/ui.js",
"src/content.js"
],
"run_at": "document_idle",
"world": "MAIN"
}
]
}