Manifest V3 的網路可存取資源

Solomon Kinard
Solomon Kinard
Simeon Vincent
Simeon Vincent

全新改良版的 Manifest V3 適用 Web Accessible Resources!

全新改良版的 Manifest V3 適用 Web Accessible Resources!

摘要

適用於 Manifest V3 的網頁無障礙資源現已推出!manifest.json 現在支援權限定義。開發人員可以根據要求網站來源或擴充功能 ID 限制資源。

範例

萬用字元網站:

{
  "web_accessible_resources": [
    {
      "resources": ["a.png"],
      "matches": ["*://*/*"]
    }
  ],
  ...
}

網站專屬:

{
  "web_accessible_resources": [
    {
      "resources": ["a.png"],
      "matches": ["https://example.com/*"]
    }
  ],
  ...
}

擴充功能專屬:

{
  "web_accessible_resources": [
    {
      "resources": ["a.png"],
      "extension_ids": ["abcdefghijlkmnopabcdefghijlkmnop"]
    }
  ],
  ...
}

擴充功能和網站專屬:

{
  "web_accessible_resources": [
    {
      "resources": ["a.png"],
      "matches": ["https://example.com/*"],
      "extension_ids": ["abcdefghijlkmnopabcdefghijlkmnop"]
    }
  ],
  ...
}

已推出

m89