Youtube auto-reporter

Youtube auto-reporter

Helps auto-report spamming channels.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Youtube auto-reporter",
  "version": "0.0.1",
  "author": "Jirka Justra",
  "description": "Helps auto-report spamming channels.",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "512": "youtube-auto-reporter.svg"
  },
  "browser_action": {
    "default_icon": {
      "512": "youtube-auto-reporter_off.svg"
    },
    "default_title": "Youtube auto-reporter",
    "browser_style": false
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "tabs"
  ],
  "background": {
    "scripts": [
      "tea.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "tea.js",
        "content.js"
      ]
    }
  ]
}