To understand this question you will first need to read This Question

That question was quickly closed for been "off topic"

As I explained, I have already created a "content script" extension for Google Chrome.

Which consists of two files

manifest.json

{
  "name": "Stackoverflow Logo Remover",
  "version": "1.0",
  "description": "Hide the Stackoverflow Logo",

  "content_scripts": [
    {
      "matches": [
        "http://stackoverflow.com/*", "http://serverfault.com/*"
      ],
      "js": [
        "modify.js"
      ]
    }
  ]
}

modify.js

document.getElementById('hlogo').style.visibility='hidden';

Now I want create similar extension for other major browsers. Firefox, IE, Opera and Safari.

I'm looking for code samples that will achieve the same functionality as above for each of the browsers.

Hopefully I will not be "off topic" this time

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.