Hide video duration
Hide video duration on video services to avoid spoilers
Что такое Hide video duration?
Hide video duration - это расширение Chrome, разработанное https://sokolov.cc, и его основная функция - "Hide video duration on video services to avoid spoilers".
Снимки экрана расширения
Скачать файл CRX расширения Hide video duration
Скачайте файлы расширений Hide video duration в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Hide the duration of YouTube videos to prevent spoiling the ending. In particular, a Let’s Play video of a rogue-like coming to an end suggests the player will make a crucial mistake soon.
With this extension a duration can be hidden at the start of a video manually, and also all videos matching a particular title can have their durations hidden automatically. Основная информация о расширении
| Название | |
| ID | jkgpcmmhejecphgdnihjfgmdpdkhgpke |
| Официальный URL | https://chromewebstore.google.com/detail/hide-video-duration/jkgpcmmhejecphgdnihjfgmdpdkhgpke |
| Описание | Hide video duration on video services to avoid spoilers |
| Размер файла | 1.78 MB |
| Количество установок | 990 |
| Текущая Версия | 1.0.2 |
| Последнее Обновление | 2022-11-21 |
| Дата публикации | 2019-03-22 |
| Рейтинг | 4.20/5 Всего 15 оценок |
| Разработчик | https://sokolov.cc |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/denis-sokolov/hide-video-duration |
| URL страницы помощи | https://github.com/denis-sokolov/hide-video-duration/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_extension_name__",
"version": "1.0.2",
"default_locale": "en",
"description": "__MSG_extension_description__",
"icons": {
"16": "src\/icons\/300.png",
"48": "src\/icons\/300.png",
"128": "src\/icons\/300.png"
},
"background": {
"scripts": [
"src\/page-action-rules.js",
"src\/hide-automatically.js"
],
"persistent": false
},
"page_action": {
"default_popup": "src\/toolbar\/popup.html"
},
"permissions": [
"activeTab",
"declarativeContent",
"storage"
],
"optional_permissions": [
"http:\/\/www.youtube.com\/",
"https:\/\/www.youtube.com\/"
],
"options_ui": {
"page": "src\/options\/index.html",
"chrome_style": true
}
} | |