Rewind
Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.
Что такое Rewind?
Rewind - это расширение Chrome, разработанное Anthony Zheng, и его основная функция - "Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.".
Снимки экрана расширения
Скачать файл CRX расширения Rewind
Скачайте файлы расширений Rewind в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        An extension designed to make you want to "Rewind" that video!
Features to customize your YouTube™ browsing experience including:
✔ Mirroring the video player
✔ Hiding the comments section
✔ Hiding the related videos section
✔ Looping through segments of the video
SVG Icon used for the logo is free for commercial use. Provided by: https://www.iconfinder.com/Octopaper
YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                     Основная информация о расширении
| Название |   |  
| ID | needhfaeneknjcmhkkknfcnpjmifhjjj | 
| Официальный URL | https://chromewebstore.google.com/detail/rewind/needhfaeneknjcmhkkknfcnpjmifhjjj | 
| Описание | Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube. | 
| Размер файла | 222 KB | 
| Количество установок | 31 | 
| Текущая Версия | 1.0.1 | 
| Последнее Обновление | 2020-05-14 | 
| Дата публикации | 2020-05-14 | 
| Рейтинг | 5.00/5 Всего 1 оценок | 
| Разработчик | Anthony Zheng | 
| Тип оплаты | free | 
| Поддерживаемые языки | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rewind",
    "version": "1.0.1",
    "description": "Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}  |  |