Youtube Time Marks

Reads Youtube description and creates video time marks.

Что такое Youtube Time Marks?

Youtube Time Marks - это расширение Chrome, разработанное RepoGamesStudio, и его основная функция - "Reads Youtube description and creates video time marks.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Youtube Time Marks

Скачайте файлы расширений Youtube Time Marks в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Usable mostly to long youtube interviews
It reads description in the following format:

00:00:00 desc1
00:01:34 desc2
00:01:47 desc3
00:02:44 desc4
...

and creates time marks automatically.                    

Основная информация о расширении

Название Youtube Time Marks Youtube Time Marks
ID pphlndhfdfilkemppecnknkefjoolibp
Официальный URL https://chrome.google.com/webstore/detail/youtube-time-marks/pphlndhfdfilkemppecnknkefjoolibp
Описание Reads Youtube description and creates video time marks.
Размер файла 12.05 KB
Количество установок 11
Текущая Версия 0.0.3
Последнее Обновление 2018-06-30
Дата публикации 2018-06-30
Рейтинг 5.00/5 Всего 2 оценок
Разработчик RepoGamesStudio
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.facebook.com/RepoGames/
URL страницы помощи https://www.facebook.com/RepoGames/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Time Marks",
    "version": "0.0.3",
    "description": "Reads Youtube description and creates video time marks.",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle",
            "css": [
                "styles.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}