Facebook Video Download Firefox

Examine source code of Facebook Video Download

Inspect and view changes in Facebook Video Download source codes across current and past versions
Please login to examine the extension's source code.
manifest.json
{
  "web_accessible_resources": [
    "img/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{2d228e44-9ed5-4462-8496-e9d72f56283d}"
    }
  },
  "name": "__MSG_extName__",
  "default_locale": "en",
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "version": "1.6",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "*://*.vimeo.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "includes/commons.js",
        "includes/vimeo_com.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "include_globs": [
        "http://dailymotion.*/*",
        "http://*.dailymotion.*/*",
        "https://dailymotion.*/*",
        "https://*.dailymotion.*/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "includes/commons.js",
        "includes/dailymotion_com.js"
      ]
    },
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "exclude_matches": [
        "*://accounts.youtube.com/*"
      ],
      "js": [
        "includes/commons.js",
        "includes/youtube_com.js"
      ]
    },
    {
      "matches": [
        "*://*.soundcloud.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "includes/commons.js",
        "includes/soundcloud_com.js"
      ]
    },
    {
      "matches": [
        "*://*.vk.com/*",
        "*://*.vkontakte.ru/*",
        "*://*.vkvideo.ru/*",
        "*://*.vk.ru/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "exclude_matches": [
        "*://queuev4.vk.com/*",
        "*://queuev4.vkontakte.ru/*"
      ],
      "js": [
        "includes/commons.js",
        "includes/vkontakte_ru.js"
      ]
    },
    {
      "matches": [
        "*://*.ok.ru/*",
        "*://*.odnoklassniki.ru/*"
      ],
      "run_at": "document_end",
      "js": [
        "includes/commons.js",
        "includes/odnoklassniki_ru.js"
      ]
    },
    {
      "matches": [
        "*://my.mail.ru/*"
      ],
      "run_at": "document_end",
      "js": [
        "includes/commons.js",
        "includes/mail_ru.js"
      ]
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "includes/commons.js",
        "includes/facebook_com.js"
      ]
    },
    {
      "matches": [
        "*://*.savefrom.net/*"
      ],
      "run_at": "document_end",
      "js": [
        "includes/commons.js",
        "includes/savefrom_net.js"
      ]
    },
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "includes/commons.js",
        "includes/instagram_com.js"
      ]
    },
    {
      "matches": [
        "*://*.rutube.ru/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "includes/commons.js",
        "includes/rutube_ru.js"
      ]
    },
    {
      "matches": [
        "*://*.tiktok.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "includes/commons.js",
        "includes/tiktok_com.js"
      ]
    },
    {
      "matches": [
        "*://music.yandex.ru/*",
        "*://music.yandex.by/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "includes/commons.js",
        "includes/yandex_music.js"
      ]
    },
    {
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "includes/commons.js",
        "includes/twitch_tv.js"
      ]
    },
    {
      "matches": [
        "*://matchtv.ru/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "includes/commons.js",
        "includes/match_tv.js"
      ]
    },
    {
      "matches": [
        "*://sf-helper.net/*",
        "*://oauth2.televzr.com/*"
      ],
      "js": [
        "includes/commons.js",
        "includes/oauth_helper_net.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "includes/tab.js"
      ]
    },
    {
      "matches": [
        "*://www.astrology.com/*"
      ],
      "js": [
        "includes/commons.js",
        "includes/astrology.js"
      ]
    },
    {
      "matches": [
        "*://astrologyvalley.com/*"
      ],
      "js": [
        "includes/commons.js",
        "includes/astrologyvalley.js"
      ]
    },
    {
      "matches": [
        "*://www.horoscope.com/us/*"
      ],
      "js": [
        "includes/commons.js",
        "includes/horoscope.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'  'unsafe-eval'; object-src 'self';",
  "browser_action": {
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "downloads",
    "storage",
    "<all_urls>",
    "webRequest",
    "webNavigation",
    "webRequestBlocking"
  ],
  "description": "__MSG_extDescription__"
}

Best Facebook Video Download Alternatives

Here are some Firefox add-ons that are similar to Facebook Video Download: