-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
40 lines (39 loc) · 979 Bytes
/
Copy pathmanifest.json
File metadata and controls
40 lines (39 loc) · 979 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
31
32
33
34
35
36
37
38
39
40
{
"manifest_version": 2,
"name": "Character.AI++",
"version": "2.0.6.1",
"description": "Character.AI++ - Extension that adds functions to Character.AI",
"permissions": [
"tabs",
"https://character.ai/*"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://character.ai/*"],
"js": [
"content/hider.js",
"content/exported.js",
"content/BotCardMenu.js",
"content/CustomFavicon.js",
"content/PlusPlus.js",
"content/pingBackground.js",
"content/replacelogo.js",
"content/returnoldtextcaiplus.js",
"content/replaceshift.js"
],
"run_at": "document_idle"
}
],
"browser_action": {
"default_title": "Character.AI++",
"default_popup": "popup.html",
"default_icon": "icons/icon.png"
},
"icons": {
"128": "icons/icon.png"
}
}