-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (37 loc) · 912 Bytes
/
manifest.json
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
{
"name": "Reimagined Scratch",
"version": "0.1.3",
"description": "Improves the Scratch interface",
"homepage_url": "https://github.com/MasterOfTheTiger/reimagine-scratch",
"manifest_version": 2,
"permissions": [
"https://scratch.mit.edu/*"
],
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https://scratch.mit.edu/*"
],
"css": [
"content.css"
],
"js": [
"content.js"
]
},
{
"run_at": "document_start",
"matches": [
"https://scratch.mit.edu/",
"https://scratch.mit.edu/messages"
],
"css": [
"justnew.css"
],
"js": [
"justnew.js"
]
}
]
}