Tube comments
Enables custom disqus youtube comments
Что такое Tube comments?
Tube comments - это расширение Chrome, разработанное Suriya, и его основная функция - "Enables custom disqus youtube comments".
Снимки экрана расширения
Скачать файл CRX расширения Tube comments
Скачайте файлы расширений Tube comments в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
If you ever faced "Comments are turned off" on any Youtube videos don't worry you can still comment using this chrome extension via Disqus comments community from the same youtube page itself cool right..!
Основная информация о расширении
Название | |
ID | ojjglcjjkhpgbelpkikcfembbacpokoc |
Официальный URL | https://chromewebstore.google.com/detail/tube-comments/ojjglcjjkhpgbelpkikcfembbacpokoc |
Описание | Enables custom disqus youtube comments |
Размер файла | 13.4 KB |
Количество установок | 13 |
Текущая Версия | 0.1 |
Последнее Обновление | 2020-08-06 |
Дата публикации | 2020-08-06 |
Разработчик | Suriya |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tube comments", "description": "Enables custom disqus youtube comments", "version": "0.1", "icons": { "16": "comment.png", "48": "comment.png", "128": "comment.png" }, "browser_action": { "default_icon": "comment.png", "default_popup": "content.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "extension.js" ], "run_at": "document_end" } ], "manifest_version": 2 } |