Say Play

Say Play

Play, pause, forward and rewind any video with your voice.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Say Play",
  "version": "2.0.2",
  "icons": {
    "16": "assets/logo/16x16_on.png",
    "38": "assets/logo/38x38_on.png",
    "48": "assets/logo/48x48_on.png",
    "128": "assets/logo/128x128_on.png"
  },
  "description": "Play, pause, forward and rewind any video with your voice.",
  "homepage_url": "https://thanesh.dev/say-play",
  "short_name": "Say Play",
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_security_policy": "style-src 'self'; script-src 'self'; object-src 'self'",
  "author": "Thanesh Rajandran",
  "minimum_chrome_version": "49",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/logo/16x16_off.png",
      "38": "assets/logo/38x38_off.png",
      "48": "assets/logo/48x48_off.png",
      "128": "assets/logo/128x128_off.png"
    },
    "default_title": "Say Play",
    "chrome_style": false
  },
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ],
      "css": [
        "assets/lib/notyf.min.css"
      ]
    }
  ]
}