Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Font must be listed in manifest #2827

Open
eljeffeg opened this issue Nov 25, 2024 · 2 comments
Open

Font must be listed in manifest #2827

eljeffeg opened this issue Nov 25, 2024 · 2 comments

Comments

@eljeffeg
Copy link

eljeffeg commented Nov 25, 2024

Description

Denying load of chrome-extension://bkdgflcldnnnapblkhphbgpggdiikppg/public/font/ProximaNova-Reg-webfont.woff2. Resources must be listed in the web_accessible_resources manifest key in order to be loaded by pages outside the extension.

Denying load of chrome-extension://bkdgflcldnnnapblkhphbgpggdiikppg/public/font/ProximaNova-Bold-webfont.woff2. Resources must be listed in the web_accessible_resources manifest key in order to be loaded by pages outside the extension.

Steps to Reproduce

  1. Load a webpage

Expected behavior:
No console errors

Actual behavior:
console errors

Versions
2024.10.16

  • Extension: 20xx-xx-xx
  • Browser: Chrome, Brave
  • OS: Mac

Additional Information

Issue is repeatable every page I go to..

@DSingh0304
Copy link

Hi, I would like to work on this !!

@DSingh0304
Copy link

To fix this issue, you need to add the required resources to the web_accessible_resources key in the extension's manifest file.

{ "manifest_version": 2, "name": "Your Extension Name", "version": "1.0", ... "web_accessible_resources": [ "public/font/ProximaNova-Reg-webfont.woff2", "public/font/ProximaNova-Bold-webfont.woff2" ] }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants