-
Notifications
You must be signed in to change notification settings - Fork 11
/
manifest.json
60 lines (60 loc) · 1.81 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
{
"manifest_version": 3,
"version": "6.2",
"name": "XReplyGPT",
"description": "The fastest way to reply to tweets using ChatGPT and the easiest way to boost your tweet impressions.",
"icons": {
"128": "src/images/XReplyGPT.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 reply for tweets."
},
"move_to_next_button": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "(When you are on the home page) Move to the next generated reply in the Home page. After doing this shortcut, the focus will be on the reply button, so you can directly press ENTER to enter the reply window. When you are at the last generated reply it will regenerate a new batch of reply. </br> (When you are in the reply page) Move to the 'reply' button in a reply window. After doing this shortcut, the focus will be on the 'send' button, so you can directly press ENTER to reply."
},
"move_to_previous_button": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Move to the previous generated reply."
}
},
"permissions": [
"activeTab",
"storage",
"scripting"
],
"host_permissions": [
"https://twitter.com/*"
],
"content_scripts": [
{
"matches": [
"https://twitter.com/*",
"https://mobile.twitter.com/*",
"https://x.com/*"
],
"js": [
"src/content-window-exit.js"
]
}
],
"action": {
"default_popup": "src/index.html",
"default_icon": "src/images/XReplyGPTbg.png"
}
}