Video Downloader for Reddit - Redditsave

Video Downloader for Reddit - Redditsave

A powerful reddit video downloader with sound powered by redditsave.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Video Downloader for reddit - Redditsave",
  "description": "A powerful reddit video downloader with sound powered by redditsave.com",
  "version": "2.0",
  "browser_action": {
    "default_icon": "img/icon.png"
  },
  "background": {
    "page": "./background.html"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/*"
      ],
      "js": [
        "./content.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs"
  ]
}