|
3 | 3 | // @description Adds the magic of AI to Amazon shopping
|
4 | 4 | // @author KudoAI
|
5 | 5 | // @namespace https://kudoai.com
|
6 |
| -// @version 2025.1.29.12 |
| 6 | +// @version 2025.1.29.13 |
7 | 7 | // @license MIT
|
8 | 8 | // @icon https://amazongpt.kudoai.com/assets/images/icons/amazongpt/black-gold-teal/icon48.png?v=0fddfc7
|
9 | 9 | // @icon64 https://amazongpt.kudoai.com/assets/images/icons/amazongpt/black-gold-teal/icon64.png?v=0fddfc7
|
|
71 | 71 | // @resource amzgptLSlogo https://amazongpt.kudoai.com/assets/images/logos/amazongpt/black-gold/logo509x74.png.b64?v=1ac5561#sha256-wSW1EtGtscP0ZcUweFBqKfswt3NzEjbKxn5COYyihVA=
|
72 | 72 | // @resource amzgptDSlogo https://amazongpt.kudoai.com/assets/images/logos/amazongpt/white-teal/logo509x74.png.b64?v=1ac5561#sha256-EWstwtlU8+gXSM98gpr6OR3OZ63ttHVNp/NQ7IMzFDA=
|
73 | 73 | // @resource hljsCSS https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/dark.min.css#sha256-v0N76BFFkH0dCB8bUr4cHSVN8A/zCaOopMuSmJWV/5w=
|
74 |
| -// @resource brpCSS https://assets.aiwebextensions.com/styles/rising-particles/dist/black.min.css?v=727feff#sha256-7ycEGqwB5zKKoaW3olhaFP8yj0KEXe+Ks2kS/4iRGZM= |
| 74 | +// @resource grpCSS https://assets.aiwebextensions.com/styles/rising-particles/dist/gray.min.css?v=727feff#sha256-7ycEGqwB5zKKoaW3olhaFP8yj0KEXe+Ks2kS/4iRGZM= |
75 | 75 | // @resource wrpCSS https://assets.aiwebextensions.com/styles/rising-particles/dist/white.min.css?v=727feff#sha256-6xBXczm7yM1MZ/v0o1KVFfJGehHk47KJjq8oTktH4KE=
|
76 | 76 | // @grant GM_getValue
|
77 | 77 | // @grant GM_setValue
|
|
1907 | 1907 | ['sm', 'med', 'lg'].forEach(size =>
|
1908 | 1908 | document.querySelectorAll(`[id*=particles-${size}]`).forEach(particlesDiv =>
|
1909 | 1909 | particlesDiv.id = config.bgAnimationsDisabled ? `particles-${size}-off`
|
1910 |
| - : `${ env.ui.app.scheme == 'dark' ? 'white' : 'black' }-particles-${size}` |
| 1910 | + : `${ env.ui.app.scheme == 'dark' ? 'white' : 'gray' }-particles-${size}` |
1911 | 1911 | ))
|
1912 | 1912 | }
|
1913 | 1913 | }
|
|
3053 | 3053 | appDiv.classList.add('anchored', 'fade-in') ; addListeners.appDiv()
|
3054 | 3054 | if (config.expanded) appDiv.classList.add('expanded')
|
3055 | 3055 | app.styles = dom.create.style() ; update.appStyle() ; document.head.append(app.styles);
|
3056 |
| - ['brp', 'wrp', 'hljs'].forEach(cssType => // black rising particles, white rising particles, code highlighting |
| 3056 | + ['grp', 'wrp', 'hljs'].forEach(cssType => // gray rising particles, white rising particles, code highlighting |
3057 | 3057 | document.head.append(dom.create.style(GM_getResourceText(`${cssType}CSS`))))
|
3058 | 3058 |
|
3059 | 3059 | // Create/stylize TOOLTIPs
|
|
0 commit comments