Je dis like

Je dis like

Ce machine auto like ou auto dislike les vidéo You Tube

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Je dis like",
  "description": "Ce machine auto like ou auto dislike les vidéo You Tube",
  "version": "1.0.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon32.png"
  },
  "options_ui": {
    "page": "whatdoudo.html",
    "chrome_style": true
  },
  "content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self'",
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "activeTab",
    "https://www.youtube.com/watch*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "suchHater.js"
      ],
      "run_at": "document_idle"
    }
  ]
}