YOUTUBOOKMARK (Bookmark, YouTube, watch time)
It provides a function to bookmark the viewing time while watching YouTube videos.
Что такое YOUTUBOOKMARK (Bookmark, YouTube, watch time)?
YOUTUBOOKMARK (Bookmark, YouTube, watch time) - это расширение Chrome, разработанное yhcho0405, и его основная функция - "It provides a function to bookmark the viewing time while watching YouTube videos.".
Снимки экрана расширения
Скачать файл CRX расширения YOUTUBOOKMARK (Bookmark, YouTube, watch time)
Скачайте файлы расширений YOUTUBOOKMARK (Bookmark, YouTube, watch time) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
You can bookmark the video segments you want!!
Основная информация о расширении
Название | YOUTUBOOKMARK (Bookmark, YouTube, watch time) |
ID | fhbaihahknhibdhgddjnekoffmjbpikm |
Официальный URL | https://chromewebstore.google.com/detail/youtubookmark-bookmark-yo/fhbaihahknhibdhgddjnekoffmjbpikm |
Описание | It provides a function to bookmark the viewing time while watching YouTube videos. |
Размер файла | 65.97 KB |
Количество установок | 53 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2020-02-04 |
Дата публикации | 2020-02-04 |
Рейтинг | 4.20/5 Всего 5 оценок |
Разработчик | yhcho0405 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YOUTUBOOKMARK (Bookmark, YouTube, watch time)", "version": "1.0.2", "description": "It provides a function to bookmark the viewing time while watching YouTube videos.", "permissions": [ "activeTab", "tabs", "storage", "unlimitedStorage" ], "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "script.js" ] }, { "matches": [ "https:\/\/apis.google.com\/*" ], "all_frames": true, "js": [ "script.js" ] } ], "browser_action": { "default_icon": "icontt.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |