File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 148
148
// @description :zu Yengeza izimpendulo ze-AI ku-DuckDuckGo (inikwa amandla yi-GPT-4o!)
149
149
// @author KudoAI
150
150
// @namespace https://kudoai.com
151
- // @version 2025.4.1.1
151
+ // @version 2025.4.2
152
152
// @license MIT
153
153
// @icon https://cdn.jsdelivr.net/gh/KudoAI/duckduckgpt@06af076/assets/images/icons/duckduckgpt/icon48.png
154
154
// @icon 64 https://cdn.jsdelivr.net/gh/KudoAI/duckduckgpt@06af076/assets/images/icons/duckduckgpt/icon64.png
620
620
refresh ( ) {
621
621
if ( typeof GM_unregisterMenuCommand == 'undefined' )
622
622
return log . debug ( 'GM_unregisterMenuCommand not supported.' )
623
- for ( const id of this . ids ) { GM_unregisterMenuCommand ( id ) } this . register ( )
623
+ for ( const id of this . entryIDs ) { GM_unregisterMenuCommand ( id ) } this . register ( )
624
624
} ,
625
625
626
626
register ( ) {
629
629
const pmLabel = this . state . symbols [ + config . proxyAPIenabled ] + ' '
630
630
+ settings . controls . proxyAPIenabled . label + ' '
631
631
+ this . state . separator + this . state . words [ + config . proxyAPIenabled ]
632
- this . ids = [ GM_registerMenuCommand ( pmLabel , toggle . proxyMode ,
632
+ this . entryIDs = [ GM_registerMenuCommand ( pmLabel , toggle . proxyMode ,
633
633
env . scriptManager . supportsTooltips ? { title : settings . controls . proxyAPIenabled . helptip } : undefined ) ] ;
634
634
635
635
// Add About/Settings entries
636
- [ 'about' , 'settings' ] . forEach ( entryType => this . ids . push ( GM_registerMenuCommand (
636
+ [ 'about' , 'settings' ] . forEach ( entryType => this . entryIDs . push ( GM_registerMenuCommand (
637
637
entryType == 'about' ? `💡 ${ settings . controls . about . label } ` : `⚙️ ${ app . msgs . menuLabel_settings } ` ,
638
638
( ) => modals . open ( entryType ) , env . scriptManager . supportsTooltips ? { title : ' ' } : undefined
639
639
) ) )
You can’t perform that action at this time.
0 commit comments