I'm attempting to add a CSS file to the PayPal homepage, but I'm encountering issues with it not working properly. Here is the manifest file I am using:
{
"manifest_version": 2,
"name": "Paypal Addon",
"version": "1.0",
"description": "example",
"permissions": ["https://www.paypal.com/*"],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://www.paypal.com/*"],
"css": ["style-fix.css"],
"js": ["jquery-2.1.0.min.js", "contentScript.js"]
}]
}
Here is the content of the CSS file style-fix.css:
body {
color: red !important;
}
Can anyone provide insight into why the CSS changes are not being applied? Thank you