无论如何,我可以使用 chrome 扩展程序将 google 聚会栏的背景更改为图像吗?
Is there anyway i can change the background of google meet bar to an image using a chrome extension?
我试过了,颜色变了:
.q2u11 {
background-color: rgb(0, 68, 255); }
但是当我尝试这个时没有任何反应:
.q2u11 {
background-image: url(image1.png);
}
我正在尝试使用 content_scripts
来做到这一点
使用自定义 chrome 扩展名或 Tamper Monkey.
等用户脚本扩展名将 background-image: url(imageurl);
添加到此 .rG0ybd.LCXT6
class
示例代码:
.rG0ybd.LCXT6 {
background-image: url(https://source.unsplash.com/random);
}
工作证明:
要更改 text-color
,您需要 select 使用 classes 的单个元素。
这是其中的一些
.Jyj1Td.CkXZgc {
color: #e91e63; /* For "Meeting details" text */
}
.DPvwYc.o9fq9d {
color: #ff5722; /* For present_to_all icon */
}
.YhIwSc {
color: #27ff06; /* For "Present now" text */
}
.uJNmj.FTMc0c {
/* For Center Buttons */
background-color: #5907f7;
border: 4px solid #ffc107;
}
我试过了,颜色变了:
.q2u11 {
background-color: rgb(0, 68, 255); }
但是当我尝试这个时没有任何反应:
.q2u11 {
background-image: url(image1.png);
}
我正在尝试使用 content_scripts
来做到这一点使用自定义 chrome 扩展名或 Tamper Monkey.
等用户脚本扩展名将background-image: url(imageurl);
添加到此 .rG0ybd.LCXT6
class
示例代码:
.rG0ybd.LCXT6 {
background-image: url(https://source.unsplash.com/random);
}
工作证明:
要更改 text-color
,您需要 select 使用 classes 的单个元素。
这是其中的一些
.Jyj1Td.CkXZgc {
color: #e91e63; /* For "Meeting details" text */
}
.DPvwYc.o9fq9d {
color: #ff5722; /* For present_to_all icon */
}
.YhIwSc {
color: #27ff06; /* For "Present now" text */
}
.uJNmj.FTMc0c {
/* For Center Buttons */
background-color: #5907f7;
border: 4px solid #ffc107;
}