0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Chrome拡張機能開発】ChromeのWebサイトの表示が崩れる

Last updated at Posted at 2025-03-20

はじめに

私は最近、作ってみたい拡張機能があり拡張機能の開発をしています。
昨日まで正常に表示されていた Google Chrome の Web ページが、今朝 PC を開くと、↓のように崩れて表示されていました。

スクリーンショット 2025-03-21 8.42.26.png

解決策

最初に見つけた解決法は、アカウントをログアウトするというものでした。すると、Webサイトのレイアウトが崩れることなく表示されました。

つまり、私のアカウントに問題があることが分かりました。
同時に開発していた拡張機能が悪さしているのではないかと気づき、拡張機能を外した所、正常なページが表示されました。

  1. 悪さをしていた拡張機能
    スクリーンショット 2025-03-21 8.42.39.png

  2. 正常に表示された Qiita の Webページ
    スクリーンショット 2025-03-21 8.42.50.png

原因

拡張機能のmanifestファイルとcssファイルが原因でした。

修正前

manifest.json
"content_scripts": [
  {
    "matches": ["<all_urls>"],
    "js": ["popup.js"],
    "css": ["styles.css"]
  }
]
styles.css
body {
    font-family: sans-serif;
    width: 400px;
}

manifestのcontent_scriptsでcssファイルを設定している為、全てのWebページにcssの設定(bodyの幅が400pxに固定される)が反映されています。

修正後

manifest.jsonのcontent_scripts内のcssに関する記述を削除

manifest.json
"content_scripts": [
  {
    "matches": ["<all_urls>"],
    "js": ["popup.js"]
  }
]

popup.html でのみ cssの設定を有効にしたいので、以下のコードを popup.html に追加

<link rel="stylesheet" href="styles.css">

popup.html
<!DOCTYPE html>
<html>
  <head>
    ...
    <link rel="stylesheet" href="styles.css">
    ...
  </head>
...  
</html>

おわりに

同じような問題に遭遇している人がいるかもしれないと思い、この記事を作成しました!
役立っていれば幸いです!いいねしてくれると喜びます。

ここまで読んでいただきありがとうございました!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?