chrome extension shadow DOM import boostrap fonts
问题 so I'd like to display bootstrap 3 icons in a shadowroot added from a chrome extension content script. So far its not working, help? manifest.js does include the woff file in web_accessible_resources shadow root has style tag with: @import url(chrome-extension://__MSG_@@extension_id__/fonts/glyphicons-halflings-regular.woff2); What am I missing? 回答1: To import a font, you should not use @import url which is used to import a CSS stylesheet. Instead, you should use the @font-face directive.