gpt4 book ai didi

google-chrome - chrome 插件 css 注入(inject)

转载 作者:太空宇宙 更新时间:2023-11-04 05:11:56 26 4
gpt4 key购买 nike

您好,我正在尝试将自定义 css 注入(inject)到页面中,我的 list 文件如下所示

{
"name": "SaneHaveeru",
"version": "1.0",
"description": "This is to properly display haveeru .",
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": ["http://www.haveeru.com.mv/*"],
"css" : ["proper.css"]
}
],
"permissions": [
"http://www.haveeru.com.mv/"
]

}

我注入(inject)的css是

.post-frame {
float: left;
width: 470px;
font-size: 18px;
line-height: 30px;
color: #292929;
}

但页面 CSS 似乎覆盖了我的自定义 CSS。如这里所见 screen shot of chrom developer tool showing my css being overridden by the pages css是他们强制我的 css 更改到页面的方式吗?

干杯纳什·拉菲克

最佳答案

!important 放在所有 css 规则的末尾......

.post-frame {
float: left !important;
width: 470px !important;
font-size: 18px !important;
line-height: 30px !important;
color: #292929 !important;
}

http://webdesign.about.com/od/css/f/blcssfaqimportn.htm

关于google-chrome - chrome 插件 css 注入(inject),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9123795/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com