-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
23 lines (23 loc) · 588 Bytes
/
manifest.json
File metadata and controls
23 lines (23 loc) · 588 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"manifest_version": 3,
"name": "XTheme Engine",
"version": "1.0.0",
"description": "Customize Twitter/X interface colors",
"permissions": ["storage"],
"host_permissions": ["https://x.com/*", "https://twitter.com/*"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://x.com/*", "https://twitter.com/*"],
"js": ["content/inject.js"],
"run_at": "document_start",
"all_frames": false
}
],
"action": {
"default_popup": "popup/popup.html",
"default_title": "XTheme Engine"
}
}