The .css file from the popup.html file in the chrome extension is not connected, maybe you need to register it in manifest?
The .css file from the popup.html file in the chrome extension is not connected, maybe you need to register it in manifest?
From the Google Guide:
If you need to use your content_scripts field, please use your content script.
{ "name": "My extension", ... "content_scripts": [{ "matches": ["http://www.google.com/*"], "css": ["mystyles.css"], "js": ["jquery.js", "myscript.js"] }], ... } Source: https://ru.stackoverflow.com/questions/507021/
All Articles