|
3 | 3 | // @description Add AI chat & product/category summaries to Amazon shopping, powered by the latest LLMs like GPT-4o! |
4 | 4 | // @author KudoAI |
5 | 5 | // @namespace https://kudoai.com |
6 | | -// @version 2025.5.11 |
| 6 | +// @version 2025.5.13 |
7 | 7 | // @license MIT |
8 | 8 | // @icon https://amazongpt.kudoai.com/assets/images/icons/app/black-gold-teal/icon48.png?v=8e8ed1c |
9 | 9 | // @icon64 https://amazongpt.kudoai.com/assets/images/icons/app/black-gold-teal/icon64.png?v=8e8ed1c |
|
136 | 136 | // Init APP data |
137 | 137 | window.app = { |
138 | 138 | version: GM_info.script.version, chatgptjsVer: /chatgpt\.js@([\d.]+)/.exec(GM_info.scriptMetaStr)[1], urls: {}, |
139 | | - latestResourceCommitHash: 'dd80f92' // for cached <app|messages>.json |
| 139 | + latestResourceCommitHash: '489505c' // for cached <app|messages>.json |
140 | 140 | } |
141 | 141 | app.urls.resourceHost = `https://cdn.jsdelivr.net/gh/KudoAI/amazongpt@${app.latestResourceCommitHash}` |
142 | 142 | const remoteAppData = await new Promise(resolve => xhr({ |
|
167 | 167 | about_version: 'Version', |
168 | 168 | about_poweredBy: 'Powered by', |
169 | 169 | about_openSourceCode: 'Open source code', |
| 170 | + about_latestChanges: 'Latest changes', |
170 | 171 | scheme_light: 'Light', |
171 | 172 | scheme_dark: 'Dark', |
172 | 173 | mode_proxy: 'Proxy Mode', |
|
626 | 627 | + `<span style="${labelStyles}">📜 ${app.msgs.about_openSourceCode}:</span> ` |
627 | 628 | + `<a href="${app.urls.github}" target="_blank" rel="nopener">` |
628 | 629 | + app.urls.github + '</a>\n' |
| 630 | + + `<span style="${labelStyles}">🚀 ${app.msgs.about_latestChanges}:</span> ` |
| 631 | + + `<a href="${app.urls.github}/commits" target="_blank" rel="nopener">` |
| 632 | + + `${app.urls.github}/commits</a>\n` |
629 | 633 | + `<span style="${labelStyles}">⚡ ${app.msgs.about_poweredBy}:</span> ` |
630 | 634 | + `<a href="${app.urls.chatgptjs}" target="_blank" rel="noopener">chatgpt.js</a>` |
631 | 635 | + ` v${app.chatgptjsVer}`, |
|
634 | 638 | function getSupport(){}, |
635 | 639 | function discuss(){}, |
636 | 640 | function moreAIextensions(){} |
637 | | - ], '', 656 // modal width |
| 641 | + ], '', 747 // modal width |
638 | 642 | ) |
639 | 643 |
|
640 | 644 | // Add logo |
|
0 commit comments