YouTube Row Fixer
The chrome extension for Increasing the videos per row.
Что такое YouTube Row Fixer?
YouTube Row Fixer - это расширение Chrome, разработанное sapondanaisriwan, и его основная функция - "The chrome extension for Increasing the videos per row.".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Row Fixer
Скачайте файлы расширений YouTube Row Fixer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The chrome extension for Increasing the videos per row on all pages.
Source Code: https://github.com/sapondanaisriwan/youtube-row-fixer
Bug Report: https://github.com/sapondanaisriwan/youtube-row-fixer/issues Основная информация о расширении
| Название | |
| ID | kehjfphhkfppnnjhdfhanmehkegdppho |
| Официальный URL | https://chromewebstore.google.com/detail/youtube-row-fixer/kehjfphhkfppnnjhdfhanmehkegdppho |
| Описание | The chrome extension for Increasing the videos per row. |
| Размер файла | 70.62 KB |
| Количество установок | 809 |
| Текущая Версия | 1.0.4 |
| Последнее Обновление | 2023-12-03 |
| Дата публикации | 2023-06-03 |
| Рейтинг | 4.41/5 Всего 27 оценок |
| Разработчик | sapondanaisriwan |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/sapondanaisriwan/youtube-row-fixer |
| URL страницы помощи | https://github.com/sapondanaisriwan/youtube-row-fixer/issues |
| Поддерживаемые языки | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube Row Fixer",
"description": "The chrome extension for Increasing the videos per row.",
"version": "1.0.4",
"permissions": [
"tabs",
"storage"
],
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": ".\/asset\/img\/icon-16.png",
"32": ".\/asset\/img\/icon-32.png",
"48": ".\/asset\/img\/icon-48.png",
"64": ".\/asset\/img\/icon-64.png",
"128": ".\/asset\/img\/icon-128.png"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
".\/variables.js",
".\/content-script.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"js\/main.js"
],
"matches": [
"https:\/\/www.youtube.com\/*"
]
}
],
"background": {
"service_worker": "background.js"
}
} | |