Kino

Kino

This extension allows control of websites like youtube.com or egghead.io from the comfort of your text editor

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Kino",
  "description": "This extension allows control of websites like youtube.com or egghead.io from the comfort of your text editor",
  "version": "1.3.1",
  "icons": {
    "128": "[email protected]"
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": "kino-logo.png"
  },
  "background": {
    "scripts": [
      "storage.js",
      "event.js"
    ],
    "persistent": true
  },
  "permissions": [
    "http://*/",
    "https://*/",
    "tabs",
    "activeTab",
    "nativeMessaging",
    "storage"
  ]
}