U Comment for Youtube™
Watch youtube vides and see comments occur as you watch
Что такое U Comment for Youtube™?
U Comment for Youtube™ - это расширение Chrome, разработанное gornall.jason, и его основная функция - "Watch youtube vides and see comments occur as you watch".
Снимки экрана расширения
Скачать файл CRX расширения U Comment for Youtube™
Скачайте файлы расширений U Comment for Youtube™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
Название | |
ID | jkflkkodhkllkfpgocafmggflhhpleal |
Официальный URL | https://chrome.google.com/webstore/detail/u-comment-for-youtube/jkflkkodhkllkfpgocafmggflhhpleal |
Описание | Watch youtube vides and see comments occur as you watch |
Размер файла | 43.7 KB |
Количество установок | 161 |
Текущая Версия | 1.3.0 |
Последнее Обновление | 2015-09-21 |
Дата публикации | 2015-09-21 |
Рейтинг | 2.92/5 Всего 13 оценок |
Разработчик | gornall.jason |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "U Comment for Youtube\u2122", "version": "1.3.0", "manifest_version": 2, "description": "Watch youtube vides and see comments occur as you watch", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "128": "icon.png", "48": "icon.png", "16": "icon.png" }, "permissions": [ "http:\/\/*\/", "https:\/\/*\/", "tabs" ], "background": { "scripts": [ "jquery.min.js", "ajaxer.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "css": [ "basic.css", "animate.css" ], "js": [ "jquery.min.js", "teacup.js", "async.min.js", "background.js" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |