crosheresui
New Member
I am creating a simple Chrome extension that blocks the "Google" logo image on the Google homepage using a content script. I followed the directions on the content-script page, but it still does not seem to be working. Can anyone spot what I'm doing wrong?EDIT: I have tested it with other website like flickr and it works perfectly. I've also searched through the Google homepage CSS and cannot figure out which CSS rule is overriding my CSS. Any ideas? How can I make a stronger CSS injection so that no other CSS can override mine?manifest.json:\[code\]{ "manifest_version": 2, "name": "Google Logo Blocker", "description": "This extension blocks the Google logo image.", "version": "1.0", "content_scripts": [ { "matches": ["http://www.google.com/"], "css": ["blocker.css"] } ], "browser_action": { "default_icon": "icon.png" }}\[/code\]blocker.css:\[code\]img { display: none !important;}\[/code\]