【发布时间】:2016-01-22 22:00:34
【问题描述】:
所以我尝试制作小 chrome 扩展只是为了改变 csgosquad.com/ranks color of thoose orange bars to red 中的颜色
使用 manifest.json
{
"name": "Top Questions redder",
"description": "Make the world red",
"version": "1.0",
"content_scripts": [
{
"matches": ["https://csgosquad.com/ranks"],
"css": ["sheet.css"],
}
],
"manifest_version": 2
}
和 sheet.css
`.row-rank .progress.bar-rank .progress-bar
{
background-color: #ff0b00;
}`
但我仍然需要手动更改它like this
那么如何让它自动改变呢?
【问题讨论】:
标签: html css json google-chrome-extension google-chrome-app