Tube comments
Enables custom disqus youtube comments
What is Tube comments?
Tube comments is a Chrome extension developed by Suriya, and its main feature is "Enables custom disqus youtube comments".
Extension Screenshots
Download Tube comments Extension CRX File
Download Tube comments extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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..!
Extension Basic Information
Name | |
ID | ojjglcjjkhpgbelpkikcfembbacpokoc |
Official URL | https://chromewebstore.google.com/detail/tube-comments/ojjglcjjkhpgbelpkikcfembbacpokoc |
Description | Enables custom disqus youtube comments |
File Size | 13.4 KB |
Installation Count | 13 |
Current Version | 0.1 |
Last Updated | 2020-08-06 |
Publish Date | 2020-08-06 |
Developer | Suriya |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |