Reddit Video Downloader | Reddloader

Reddit Video Downloader | Reddloader

Easy to use extension, which allows you to download and trim Reddit videos in high quality with sound. Powered by reddloader.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reddit Video Downloader | Reddloader",
  "description": "Easy to use extension, which allows you to download and trim Reddit videos in high quality with sound. Powered by reddloader.com",
  "version": "1.0",
  "browser_action": {
    "default_icon": "img/icon.png"
  },
  "background": {
    "page": "./index.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"
  ]
}