-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
86 lines (86 loc) · 1.79 KB
/
manifest.json
File metadata and controls
86 lines (86 loc) · 1.79 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
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
{
"manifest_version": 3,
"name": "__MSG_extName__",
"short_name": "R2AI",
"version": "1.1.1",
"description": "__MSG_extDescription__",
"author": "Alp Yalay",
"homepage_url": "https://github.com/KhazP/Reddit-to-AI",
"default_locale": "en",
"permissions": [
"activeTab",
"scripting",
"storage",
"notifications",
"tabs"
],
"host_permissions": [
"*://*.reddit.com/*",
"https://*.redd.it/*",
"https://i.redd.it/*",
"https://preview.redd.it/*",
"https://external-preview.redd.it/*",
"https://gemini.google.com/*",
"https://chatgpt.com/*",
"https://claude.ai/*",
"https://aistudio.google.com/*"
],
"content_scripts": [
{
"matches": [
"https://gemini.google.com/*",
"https://chatgpt.com/*",
"https://claude.ai/*",
"https://aistudio.google.com/*"
],
"js": [
"i18n.js",
"aiPaster.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*://*.reddit.com/*",
"https://*.redd.it/*"
],
"js": [
"i18n.js",
"floatingPanel.js"
],
"css": [
"floatingPanel.css"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
},
"background": {
"service_worker": "service_worker.js"
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"options_page": "options.html",
"web_accessible_resources": [
{
"resources": [
"images/*.svg",
"images/*.png",
"_locales/**/*.json"
],
"matches": [
"<all_urls>"
]
}
]
}