拡張ドキュメントを見た後、トリックを実行する小さな拡張を作成しましたが、効果がないようです。他に何が必要かわかりません。それとも、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"]
}
]
}
どうしたんだ?