11 lines
314 B
Plaintext
11 lines
314 B
Plaintext
// Create a <style> tag
|
|
const style = document.createElement('style');
|
|
style.textContent = `
|
|
.bqUfwS {
|
|
background-color: blue !important; /* Use !important to enforce the rule */
|
|
color: white !important;
|
|
}
|
|
`;
|
|
|
|
// Append the <style> tag to the document head
|
|
document.head.appendChild(style); |