forked from marcolivierbouch/XReplyGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
74 lines (74 loc) · 1.95 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
{
"manifest_version": 3,
"version": "1.0",
"name": "IsraReplyGPT",
"description": "Enhance your Twitter Israeli advocacy with automated, Boost your impact with strategic intelligent replies",
"icons": {
"128": "src/images/IsraReplyGPT.png"
},
"background": {
"service_worker": "src/service-worker.js",
"type": "module"
},
"commands": {
"generate_reply": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Generate pro-Israel reply to tweets."
},
"move_to_next_button": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "Move to the next generated pro-Israel reply on the homepage. Press ENTER to focus on the reply button for quick sending."
},
"move_to_previous_button": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Navigate to the previous pro-Israel reply."
}
},
"permissions": [
"activeTab",
"storage",
"scripting"
],
"host_permissions": [
"https://twitter.com/*",
"https://mobile.twitter.com/*",
"https://x.com/*",
"https://www.facebook.com/*",
"https://www.linkedin.com/*",
"https://www.quora.com/*",
"https://www.instagram.com/*",
"https://www.reddit.com/*",
"https://www.tiktok.com/*"
],
"content_scripts": [
{
"matches": [
"https://twitter.com/*",
"https://mobile.twitter.com/*",
"https://x.com/*",
"https://www.facebook.com/*",
"https://www.linkedin.com/*",
"https://www.quora.com/*",
"https://www.instagram.com/*",
"https://www.reddit.com/*",
"https://www.tiktok.com/*"
],
"js": [
"src/content-window-exit.js"
]
}
],
"action": {
"default_popup": "src/index.html",
"default_icon": "src/images/IsraReplyGPTbg.png"
}
}