Youtube Timestamp Bookmarker

Bookmark the timestamp of a YouTube video to watch later

Что такое Youtube Timestamp Bookmarker?

Youtube Timestamp Bookmarker - это расширение Chrome, разработанное Forever Impulse Tech, и его основная функция - "Bookmark the timestamp of a YouTube video to watch later".

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

screenshot
screenshot

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

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

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

                        This extension allows you to bookmark the timestamp of any YouTube video with one click. View your bookmarked YouTube videos by clicking the links in the extensions' pop-up window.

This will save you the time and effort of having to remember where you stopped watching a video. 

Features: 
- Search bar
- Update video titles
- Sort by favorited videos and date
- Light and dark mode toggle
- Remove single or multiple videos from bookmark

More features on the way!                    

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

Название Youtube Timestamp Bookmarker Youtube Timestamp Bookmarker
ID hdpcgcongdbbalkpifkdgmgifnoiddck
Официальный URL https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/hdpcgcongdbbalkpifkdgmgifnoiddck
Описание Bookmark the timestamp of a YouTube video to watch later
Размер файла 27.81 KB
Количество установок 722
Текущая Версия 2.1.2
Последнее Обновление 2022-11-17
Дата публикации 2022-04-14
Рейтинг 4.75/5 Всего 4 оценок
Разработчик Forever Impulse Tech
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Timestamp Bookmarker",
    "description": "Bookmark the timestamp of a YouTube video to watch later",
    "version": "2.1.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/ytb_icon.png",
            "32": "\/images\/ytb_icon.png",
            "48": "\/images\/ytb_icon.png",
            "128": "\/images\/ytb_icon.png"
        }
    },
    "icons": {
        "16": "\/images\/ytb_icon.png",
        "32": "\/images\/ytb_icon.png",
        "48": "\/images\/ytb_icon.png",
        "128": "\/images\/ytb_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "js": [
                "options.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/bookmark.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}