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?

概要

これは初心者のブラウザ拡張機能 Advent Calendar 2024の19日目の記事です。

host permmisonsの書き方でつまったので記載します。

Manifestバージョンによる違い

結論としてv2とv3でいくつか書き方が変わっており、host permissionsも変わりました。
以下のようにv3からはhost_permissionsという項目を追加して設定します。

manifest.json(v2)
"permissions": [
  "tabs",
  "notifications",
  "https://example.com/"
],
manifest.json(v3)
"permissions": [
  "tabs",
  "notifications"
],
"host_permissions": [
  "https://example.com/"
]

参考

Manifest V3 migration guide

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?