forked from yaroslav-n/tweetGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (33 loc) · 820 Bytes
/
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
{
"name": "TweetGPT",
"manifest_version": 3,
"version": "2.0.3",
"description": "Helps writing tweets using chatGPT",
"permissions": [
"storage",
"scripting",
"notifications"
],
"host_permissions": [
"https://twitter.com/",
"https://api.openai.com/"
],
"externally_connectable": {
"matches": ["https://twitter.com/*"]
},
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"background": {
"service_worker": "lib/background.js"
},
"web_accessible_resources": [
{
"resources": ["icons/button.svg", "icons/button_error.svg", "assets/settings.html"],
"matches": ["https://twitter.com/*"]
}
]
}