DVDFab Downloader
This add-on can download almost any video from the websites, like facebook, twitter, Instagram, etc.
Что такое DVDFab Downloader?
DVDFab Downloader - это расширение Chrome, разработанное DVDFab, и его основная функция - "This add-on can download almost any video from the websites, like facebook, twitter, Instagram, etc.".
Снимки экрана расширения
Скачать файл CRX расширения DVDFab Downloader
Скачайте файлы расширений 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'"
} | |