Tipp

Tipp

Allows your YouTube audience to make one-time donations to your videos without ever leaving the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tipp",
  "description": "Allows your YouTube audience to make one-time donations to your videos without ever leaving the page.",
  "version": "0.1.4",
  "icons": {
    "16": "img/tipp_48x48.png",
    "48": "img/tipp_48x48.png",
    "128": "img/tipp_128x128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "img/tipp_48x48.png",
      "48": "img/tipp_48x48.png",
      "128": "img/tipp_128x128.png"
    },
    "default_popup": "splash.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "css/content_script.min.css"
      ],
      "js": [
        "js/content_script.min.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/jquery-3.2.1.min.js",
      "js/background.min.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "identity",
    "notifications",
    "https://connect.stripe.com/*",
    "https://checkout.stripe.com/*",
    "https://tippextension.com/*",
    "https://www.youtube.com/*"
  ],
  "web_accessible_resources": [
    "fonts/*",
    "img/*"
  ]
}