Commit 46da915 1 parent d6a5e03 commit 46da915 Copy full SHA for 46da915
File tree 3 files changed +29
-0
lines changed
3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 45
45
<entry name =" showGoogleGemini" type =" Bool" >
46
46
<default >true</default >
47
47
</entry >
48
+ <entry name =" showYou" type =" Bool" >
49
+ <default >false</default >
50
+ </entry >
51
+ <entry name =" showPerplexity" type =" Bool" >
52
+ <default >false</default >
53
+ </entry >
48
54
<entry name =" showBlackBox" type =" Bool" >
49
55
<default >false</default >
50
56
</entry >
Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ KCM.SimpleKCM {
12
12
property alias cfg_showBingCopilot: showBingCopilot .checked
13
13
property alias cfg_showGoogleGemini: showGoogleGemini .checked
14
14
property alias cfg_showBlackBox: showBlackBox .checked
15
+ property alias cfg_showDeepAI: showDeepAI .checked
16
+ property alias cfg_showYou: showYou .checked
17
+ property alias cfg_showPerplexity: showPerplexity .checked
15
18
property alias cfg_hideHeader: hideHeader .checked
16
19
property alias cfg_hideGoToButton: hideGoToButton .checked
17
20
property alias cfg_hideKeepOpen: hideKeepOpen .checked
@@ -53,6 +56,22 @@ KCM.SimpleKCM {
53
56
}
54
57
}
55
58
59
+ RowLayout {
60
+ QQC2 .CheckBox {
61
+ id: showYou
62
+
63
+ text: qsTr (" You" )
64
+ }
65
+ }
66
+
67
+ RowLayout {
68
+ QQC2 .CheckBox {
69
+ id: showPerplexity
70
+
71
+ text: qsTr (" Perplexity" )
72
+ }
73
+ }
74
+
56
75
RowLayout {
57
76
QQC2 .CheckBox {
58
77
id: showBlackBox
Original file line number Diff line number Diff line change @@ -103,6 +103,10 @@ RowLayout {
103
103
104
104
plasmoid .configuration .showBlackBox && chatModel .push ({ value: " https://www.blackbox.ai" , text: " BlackBox AI" })
105
105
106
+ plasmoid .configuration .showYou && chatModel .push ({ value: " https://you.com/?chatMode=default" , text: " You" })
107
+
108
+ plasmoid .configuration .showPerplexity && chatModel .push ({ value: " https://www.perplexity.ai" , text: " Perplexity" })
109
+
106
110
urlComboBox .model = chatModel
107
111
108
112
const currentPageIndex = chatModel .findIndex (chat => chat .value === plasmoid .configuration .url )
You can’t perform that action at this time.
0 commit comments