Netflix GIFs

Netflix GIFs

Make GIFs out of your favorite Netflix TV shows and movies.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix GIFs",
  "description": "Make GIFs out of your favorite Netflix TV shows and movies.",
  "version": "0.1.1",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://*.netflix.com/*"
      ],
      "js": [
        "extension.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "desktopCapture",
    "downloads",
    "*://*.herokuapp.com/*"
  ]
}