-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 1.11 KB
/
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
38
39
{
"name": "Kazuma Kiryu Typing Extension",
"version": "0.0.2",
"description": "shows kiryu when typing in the search abr",
"manifest_version": 3,
"author": "dsinkerii",
"permissions": [
"activeTab",
"tabs"
],
"web_accessible_resources": [
{
"resources": [
"videos/kiryu/kiryu-idle.mp4",
"videos/kiryu/kiryu-typing-left.mp4",
"videos/kiryu/kiryu-typing-right.mp4",
"videos/kiryu/kiryu-success.mp4",
"videos/text/successwithblur.webm"
],
"matches": ["<all_urls>"]
}
],
"content_scripts": [
{
"matches": ["https://www.google.com/search*",
"http://127.0.0.1:8888/search*",
"https://www.google.com/",
"https://search.brave.com/",
"https://search.brave.com/search*"],
"js": ["script.js"],
"run_at": "document_end"
}
],
"browser_specific_settings": {
"gecko": {
"id": "{f33bec41-f4e8-42d0-860b-3ef1c897d292}"
}
}
}