0
我想開發一個Chrome擴展,這樣我就可以覆蓋特定網站上的一些Css樣式。Chrome擴展覆蓋css
因此,這裏有文件:
manifest.json的:
{
"manifest_version": 2,
"name": "Modify CSS and HTML",
"version": "0.1.0",
"description": "Lateral blog post demo extension",
"content_scripts": [{
"css": ["styles.css"],
"matches": ["http://www.record.pt/*"]
}]
}
styles.css的:
@import url('https://fonts.googleapis.com/css?family=Indie+Flower');
.thumb-info h3 {
font-family: 'Indie Flower', cursive !important;
}
我不能讓谷歌的字體工作。它採用草書類型,但不是Google字體。使用Chrome版本60.0.3112.113(官方版本)(64位)
任何想法爲什麼發生這種情況? 有人可以在他們的Chrome上測試並提供反饋嗎?
刪除!重要請 –
@Risa__B是正確的。 '重要的'從字面上覆蓋了其他的一切。 – jhpratt
我不認爲這部分代碼是問題所在。他想要壓倒一切。他說,部分代碼的作品,他正在尋找做上述工作 –