BitChute Video Source
Shows the video source of the current page
Что такое BitChute Video Source?
BitChute Video Source - это расширение Chrome, разработанное Johann B., и его основная функция - "Shows the video source of the current page".
Снимки экрана расширения
Скачать файл CRX расширения BitChute Video Source
Скачайте файлы расширений BitChute Video Source в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension displays the URL of the video to link or for download. Основная информация о расширении
| Название | |
| ID | bdnaoieafaddgjiecbhnodhbalhblmhl |
| Официальный URL | https://chromewebstore.google.com/detail/bitchute-video-source/bdnaoieafaddgjiecbhnodhbalhblmhl |
| Описание | Shows the video source of the current page |
| Размер файла | 1.21 MB |
| Количество установок | 6,258 |
| Текущая Версия | 0.9 |
| Последнее Обновление | 2020-11-10 |
| Дата публикации | 2020-06-07 |
| Рейтинг | 4.46/5 Всего 13 оценок |
| Разработчик | Johann B. |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "BitChute Video Source",
"description": "Shows the video source of the current page",
"version": "0.9",
"browser_action": {
"default_popup": "popup\/index.html"
},
"icons": {
"16": "16.png",
"48": "48.png",
"64": "64.png",
"128": "128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/www.bitchute.com\/*"
],
"js": [
"content.js"
]
}
],
"manifest_version": 2
} | |