查看扩展文档后,我创建了一个小扩展,应该可以解决问题,但它似乎没有任何效果。我不确定还需要做什么。或者,Gmail 是否是一个特殊页面,并且以某种方式丢弃了在其加载过程中注入的样式表?
这是我到目前为止所拥有的:
x.css:
/*html for extra specificty*/
/*this class is applied to the compose button*/
html .T-I-KE {
background-image: -webkit-linear-gradient(top,#555,#333);
background-image: linear-gradient(top,#555,#333)
}
清单.json:
{
"name": "A Compose Button as Dark as my Soul",
"version": "1.1",
"manifest_version": 2,
"description": "I’m so depressed.",
"content_scripts": [
{
"matches": ["http://mail.google.com/*", "https://mail.google.com/*"],
"css": ["x.css"]
}
]
}
这是怎么回事?