-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathmanifest.json
100 lines (100 loc) · 3.02 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "Chromegle - Omegle IP & Client",
"description": "Elevate your Omegle experience with IP information, custom themes, automation and other general improvements.",
"author": "Isaac Kogan",
"homepage_url": "https://chromegle.net",
"manifest_version": 3,
"version": "4.5.5",
"icons": {
"16": "public/images/IconLogo.png",
"48": "public/images/IconLogo.png",
"128": "public/images/IconLogo.png"
},
"background": {
"service_worker": "src/ext/background.js",
"type": "module"
},
"content_scripts": [
{
"css": [
"public/css/main.css",
"public/css/settings.css"
],
"js": [
"src/ext/libs/jquery-2.1.1.min.js",
"src/ext/libs/js-cookie-2.2.1.min.js",
"src/ext/libs/micromodal.min.js",
"src/ext/utilities/utilities.js",
"src/core/module.js",
"src/core/elements.js",
"src/core/data-loaders.js",
"src/mods/chat-registry.js",
"src/mods/chat-manager.js",
"src/mods/auto-message.js",
"src/mods/auto-reconnect.js",
"src/mods/ip-tools/ip-handling.js",
"src/mods/ip-tools/ip-blocking.js",
"src/mods/auto-confirm.js",
"src/mods/unmoderated-chat.js",
"src/mods/sync-topics.js",
"src/mods/link-embed.js",
"src/mods/paste-menu.js",
"src/mods/filter-messages.js",
"src/mods/auto-skip/timer-skip.js",
"src/mods/auto-skip/age-skip.js",
"src/mods/auto-skip/word-skip.js",
"src/mods/auto-skip/repeat-skip.js",
"src/mods/video-tools/video-wrapper.js",
"src/mods/video-tools/video-fullscreen.js",
"src/mods/video-tools/video-screenshot.js",
"src/mods/video-tools/video-popout.js",
"src/mods/video-tools/video-blocking.js",
"src/mods/clear-interests.js",
"src/mods/broadcast.js",
"src/mods/voice-commands/speech-engine.js",
"src/mods/voice-commands/speech-manager.js",
"src/mods/voice-commands/intent-handlers.js",
"src/ext/utilities/logger.js",
"src/mods/theme-tools/theme-manager.js",
"src/mods/theme-tools/button-factory.js",
"src/mods/theme-tools/splash-image.js",
"src/mods/theme-tools/user-count.js",
"src/ext/settings/menu.js",
"src/ext/settings/settings.js",
"src/ext/settings/config.js",
"src/main.js"
],
"matches": [
"*://*.omegleweb.com/*",
"*://*.omegle.com/*",
"*://*.anotherwebsite.com/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"/manifest.json",
"/public/themes/types/*",
"/public/*",
"/src/ext/scrape-ips.js"
],
"matches": [
"*://*.omegleweb.com/*",
"*://*.omegle.com/*",
"*://*.anotherwebsite.com/*"
]
}
],
"incognito": "split",
"permissions": [
"storage"
],
"externally_connectable": {
"matches": [
"*://*.omegleweb.com/*",
"*://*.omegle.com/*",
"*://*.anotherwebsite.com/*"
]
}
}