Bing Chat Dark Mode

Bing Chat dark mode! Auto align Bing Chat to center!

< Σχολιασμός για τον κώδικα Bing Chat Dark Mode

Αναφορά: Εντάξει - ο κώδικας λειτουργεί αλλά έχει σφάλματα

§
Δημοσιεύτηκε: 08/04/2023

Input Box (.main-container) transparent issues

Script works, but the text input box (.main-container) is transparent for some reason. This make long texts weird, for more example see my attachment below :

§
Δημοσιεύτηκε: 08/04/2023

Known issues

Chat input box transparent

Known fix

Add the code below, exactly before the line 38 :
delay();

Here you go :

function changeTransparentBox(){
if (document.querySelector("#b_sydConvCont > cib-serp")) {
document.querySelector("#b_sydConvCont > cib-serp").shadowRoot.querySelector("#cib-action-bar-main").style.setProperty('--cib-color-neutral-input-inverted', 'rgba(32, 32, 32, 1)');
} else {
setTimeout(changeTransparentBox, 100);
}
}
changeTransparentBox();


You can also modify the rgba(32, 32, 32 part to any color you want, for example : rgba(80, 80, 80

§
Δημοσιεύτηκε: 18/04/2023

thanks so much for the fix. Works great! Hope it could be updated in the code by the creator.

Δημοσίευση απάντησης

Συνδεθείτε για να δημοσιεύσετε μια απάντηση.