ThingyMaJig

Thingy Ma Jig is the blog of Nicholas Thompson and contains any useful tips, sites and general blog-stuff which are considered interesting or handy!

Connect

LinkedIn GitHub

Topics

announcement 25 apache 3 Apple 1 bash 8 code 7 cool 30 Days Out 8 Dark Basic Pro 4 design 12 doctor who 1 Drupal 74 E4600 1 EOS 400D 3 firefox 2 Flickr 3 free 21 games 5 geek 38 git 2 GreaseMonkey 1 hardware 7 Homebrew 1 How to 37 humour 5 iphone 1 javascript 1 jquery 1 K800i 6 k850i 4 lighttpd 3 linux 33 mac 9 miscellaneous 4 mobile phone 9 music 4 mysql 8 n73 1 n95 1 New Relic 1 Ogre3D 1 OS X 2 performance 3 photos 10 programming 40 Quicksilver 1 review 19 security 3 SEO 6 software 12 svn 2 technology 4 tip 7 tips 10 tv 3 video 3 vim 7 webdev 2 websites 33 wii 1 windows 1 YADS 10

How to remove Setaga from X-Notifier for Chrome

Posted on 23 August 2012 in
tips

I am a huge fan of the X Notifier extension for Chrome, however recently the developer has added an advertising component called Setaga. I don't recall agreeing or opt-ing into this, but its possible I did without thinking. In any case, I hate this and wanted to remove it.

I found a post on their forum, but could not see how to remove it. So I did it myself. Here's how:

  1. Find the extension. For me (on Windows 7) it was in:
    C:\Users\{USERNAME}\AppData\Local\Google\Chrome\User Data\Default\Extensions\apebebenniibdlpbookhgelaghfnaonp\1.0.12_0
    . Note, that random text is the application ID. You also see it in the URL for the extension on the Webstore site.
  2. Next, open manifest.json in something like Notepad++.
  3. Lines 8-12 look like this. Remove them (ensuring the syntax of the json remains in-tact):
       "content_scripts": [ {
          "js": [ "content/setaga/inject.js" ],
          "matches": [ "http://*/*" ],
          "run_at": "document_start"
       } ],
    
    Save the file.
  4. Go into the Content folder and delete the segata folder.
  5. Restart Chrome

It's possible this "fix" may need to be reapplied when the addon updates. Hence me writing this. So I remember how to do it.