Twitch Fixer

Twitch Fixer

Hides the section: streams in your language

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Twitch Fixer",
  "version": "1.0",
  "description": "Hides the section: streams in your language",
  "icons": {
    "16": "icon_16.png",
    "24": "icon_24.png",
    "32": "icon_32.png",
    "64": "icon_64.png",
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon_16.png",
    "default_title": "Toggle language stream visibility"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+G",
        "mac": "Alt+G"
      },
      "description": "Trigger the extension"
    }
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab"
  ],
  "version_name": "1.0 beta"
}