Utip for Youtube

Utip for Youtube

Automatically open a popup when you like a youtube video with a utip link in description.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Utip for Youtube",
  "version": "0.7.5",
  "description": "Automatically open a popup when you like a youtube video with a utip link in description.",
  "icons": {
    "128": "icon-128.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "author": "https://github.com/Jorand"
}