Nutter

Nutter

Add videos to your Nutter account right from the video 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": "Nutter",
  "description": "Add videos to your Nutter account right from the video page.",
  "version": "2.1",
  "icons": {
    "16": "assets/img/icon.png",
    "48": "assets/img/icon.png",
    "128": "assets/img/icon.png"
  },
  "web_accessible_resources": [
    "assets/img/icon.png",
    "assets/img/added.png",
    "assets/js/jquery.js",
    "assets/js/app.js",
    "assets/js/clickaction.js",
    "assets/css/style.css"
  ],
  "browser_action": {
    "default_icon": "assets/img/icon.png",
    "default_title": "Nutter",
    "default_popup": "views/popup.html"
  },
  "background": {
    "scripts": [
      "assets/js/clickaction.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "assets/js/jquery.js",
        "assets/js/vue.js",
        "assets/js/app.js"
      ],
      "css": [
        "assets/css/style.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "https://ajax.googleapis.com/",
    "http://*/*",
    "https://*/*"
  ]
}