-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
35 lines (35 loc) · 1017 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
{
"manifest_version": 2,
"name": "Mixamo Batcher",
"description": "Mixamo Batcher allows you to create and save animation packs, and download them as an archive file",
"version": "1.2",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"https://www.mixamo.com/*",
"https://mixamo.com/*",
"https://mixamo-storage-prod.s3-us-west-2.amazonaws.com/*"
],
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["https://www.mixamo.com/*", "https://mixamo.com/*"],
"js": ["content.js"],
"all_frames": true,
"run_at": "document_end"
},
{
"matches": ["https://www.mixamo.com/*", "https://mixamo.com/*"],
"js": ["inject-xhr.js"],
"all_frames": true,
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"web_accessible_resources": ["index.html", "xhr.js"]
}