DVDFab Downloader
This add-on can download almost any video from the websites, like facebook, twitter, Instagram, etc.
什么是DVDFab Downloader?
DVDFab Downloader是由DVDFab开发的Chrome扩展程序,该扩展的主要功能是“This add-on can download almost any video from the websites, like facebook, twitter, Instagram, etc.”。
扩展截图
下载DVDFab Downloader扩展crx文件
下载DVDFab Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
DVDFab Downloader is a online video downloader, it can download any video from popular websites, like facebook, twitter, instagram, etc. 扩展基本信息
| 名称 | |
| ID | cikpdiloocbinmhjfohkhkkbeclpaibd |
| 官方URL | https://chrome.google.com/webstore/detail/dvdfab-downloader/cikpdiloocbinmhjfohkhkkbeclpaibd |
| 简介 | This add-on can download almost any video from the websites, like facebook, twitter, Instagram, etc. |
| 文件大小 | 1.45 MB |
| 安装次数 | 8,000 |
| 当前版本 | 1.0.3 |
| 更新时间 | 2019-12-10 |
| 上架时间 | 2019-12-10 |
| 评分 | 2.00/5 共8次评分 |
| 开发者 | DVDFab |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://dvdfab.cn |
| 支持的语言 | de,en,fr,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "DVDFab Downloader",
"description": "This add-on can download almost any video from the websites, like facebook, twitter, Instagram, etc.",
"version": "1.0.3",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"48": "popup\/static\/images\/icon_48.png",
"128": "popup\/static\/images\/icon_48.png"
},
"browser_action": {
"default_title": "dvdfab-downloader",
"default_popup": "popup\/popup.html"
},
"options_ui": {
"page": "popup\/popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"popup\/static\/css\/dlg.css",
"popup\/static\/images\/warning.png",
"popup\/static\/images\/message.png",
"popup\/static\/images\/icons\/selected_icon.png",
"popup\/static\/images\/icons\/file_normal.png",
"popup\/static\/images\/icons\/close_normal.png",
"popup\/static\/images\/icons\/close_hover.png",
"popup\/static\/images\/loading.png"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"js": [
"popup\/static\/css\/jquery-3.4.1.min.js",
"content-script\/index.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"tabs",
"notifications",
"nativeMessaging",
"webRequest",
"webRequestBlocking",
"downloads",
"downloads.open",
"alarms",
"storage",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
} | |