Facebook Videos Downloader
This extension adds a button to download every Facebook Video.
What is Facebook Videos Downloader?
Facebook Videos Downloader is a Chrome extension developed by https://fbdown.miinosoft.com, and its main feature is "This extension adds a button to download every Facebook Video.".
Extension Screenshots
Download Facebook Videos Downloader Extension CRX File
Download Facebook Videos Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The easy way to download Facebook videos in one click.
Extension Basic Information
Name | Facebook Videos Downloader |
ID | jooeglpjppbebkgjnlbollgpepkllhof |
Official URL | https://chromewebstore.google.com/detail/facebook-videos-downloade/jooeglpjppbebkgjnlbollgpepkllhof |
Description | This extension adds a button to download every Facebook Video. |
File Size | 21.18 KB |
Installation Count | 6,971 |
Current Version | 3.0.0 |
Last Updated | 2023-12-19 |
Publish Date | 2018-10-04 |
Rating | 3.38/5 Total 26 Ratings |
Developer | https://fbdown.miinosoft.com |
[email protected] | |
Payment Type | free |
Extension Website | http://fbdown.miinosoft.com |
Help Page URL | http://fbdown.miinosoft.com |
Privacy Policy Page URL | https://who-unfriend.me/privacy.txt |
Supported Languages | de,en,en-GB,en-US,fr,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "__MSG_appDesc__", "version": "3.0.0", "name": "__MSG_appName__", "default_locale": "en", "manifest_version": 3, "action": { "default_title": "Videos Downloader for Facebook", "default_icon": "icons\/ic_48.png" }, "icons": { "32": "icons\/ic_32.png", "48": "icons\/ic_48.png", "96": "icons\/ic_96.png", "128": "icons\/ic_128.png" }, "background": { "service_worker": "background-wrapper.js" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.facebook.com\/*" ], "js": [ "content.js" ] }, { "run_at": "document_idle", "matches": [ "https:\/\/fbdown.miinosoft.com\/*" ], "js": [ "script.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "downloads" ], "host_permissions": [ "https:\/\/*.facebook.com\/*" ], "web_accessible_resources": [ { "resources": [ "down.png" ], "matches": [ "https:\/\/*.facebook.com\/*" ] } ] } |