-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 693 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 693 Bytes
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
{
"manifest_version": 2,
"name": "AI Post Assistant",
"version": "1.0",
"description": "AI-powered X post assistant using ChatGPT-4o and XAI",
"icons": {
"128": "icons/icon128.png"
},
"permissions": [
"storage",
"activeTab",
"tabs",
"<all_urls>"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"128": "icons/icon128.png"
}
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_security_policy": "script-src 'self' https://api.openai.com; object-src 'self'",
"content_scripts": [{
"matches": ["*://*.twitter.com/*", "*://*.x.com/*"],
"js": ["content.js"]
}]
}