This repository was archived by the owner on Oct 9, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (38 loc) · 1.1 KB
/
Copy pathmanifest.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"manifest_version": 2,
"name": "Chrome Controller",
"short_name": "ChromeCtrler",
"description": "Chrome Controller allows you to bing the relaxation of the console environment straight to your Mac/PC using your controller.",
"version": "0.8.7.8",
"permissions": [
"tabs",
"storage"
],
"browser_action": {
"default_popup": "settings/popup/index.html",
"default_title": "Chrome Controller Settings"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [{
"run_at": "document_start",
"matches": ["<all_urls>"],
"js": ["lib/jquery.min.js", "content_scripts/setup.js", "cursor/buttons.js", "settings/script.js", "content_scripts/controls_setup.js"]
},
{
"run_at": "document_idle",
"matches": ["<all_urls>"],
"js": ["lib/jquery.min.js", "lib/p5.min.js", "keyboard/script.js", "cursor/script.js"],
"css": ["cursor/style.css", "keyboard/style.css"]
},
{
"run_at": "document_idle",
"matches": ["https://www.youtube.com/*"],
"js": ["lib/jquery.min.js", "cursor/script.js", "youtube/dpad_selection.js"]
}
],
"icons": {
"128": "assets/cc-128.png"
}
}