Binnen-I be gone

Binnen-I be gone

This add-on likely is only useful for users who speak German or visit German language websites - it will remove so called "Binnen-Is" on webpages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/iconOn.png",
    "default_title": "Filterung aktiv",
    "browser_style": true
  },
  "content_scripts": [
    {
      "js": [
        "binnenibegone.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "Entfernt die gängigsten Sorten von Binnen-Is auf besuchten deutschsprachigen Webseiten.",
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 2,
  "name": "Binnen-I be gone",
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "permissions": [
    "storage"
  ],
  "version": "3.1.1",
  "applications": {
    "gecko": {
      "id": "{b65d7d9a-4ec0-4974-b07f-83e30f6e973f}"
    }
  }
}