Comet - Reddit Comments on YouTube & Webpages
Replace Youtube comments with Reddit comments or view the Reddit comments of any webpage.
Wat is Comet - Reddit Comments on YouTube & Webpages?
Comet - Reddit Comments on YouTube & Webpages is een Chrome-extensie ontwikkeld door z0ccc, en de belangrijkste functie is "Replace Youtube comments with Reddit comments or view the Reddit comments of any webpage.".
Extensie Screenshots
Download het CRX-bestand van de extensie Comet - Reddit Comments on YouTube & Webpages
Download Comet - Reddit Comments on YouTube & Webpages-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This browser extension allows users to replace the comment section on YouTube videos with the comments from the corresponding Reddit post. It also allows users to view the Reddit post and comments associated with the current URL in the extension popup. By default YouTube comments will be replaced with the relevant Reddit comments. YouTube comments can still be viewed by clicking the YouTube icon located at the top right of the comments section. The extension icon will turn blue when the current web page has been submitted to Reddit, and clicking on it will open a popup where users can view the posts and comments. Comet contains no ads, collects no data and signup is not required. GitHub Repository: https://github.com/z0ccc/comet Note: This extension is not affiliated with Reddit or YouTube.
Basisinformatie over de Extensie
Naam | Comet - Reddit Comments on YouTube & Webpages |
ID | amlfbbehleledmbphnielafhieceggal |
Officiële URL | https://chromewebstore.google.com/detail/comet-reddit-comments-on/amlfbbehleledmbphnielafhieceggal |
Beschrijving | Replace Youtube comments with Reddit comments or view the Reddit comments of any webpage. |
Bestandsgrootte | 332 KB |
Aantal Installaties | 8,808 |
Huidige Versie | 3.2.2 |
Laatst Bijgewerkt | 2023-10-02 |
Publicatiedatum | 2022-01-03 |
Beoordeling | 4.68/5 Totaal 19 Beoordelingen |
Ontwikkelaar | z0ccc |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://github.com/z0ccc/comet/issues |
Ondersteunde Talen | id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "3.2.2", "name": "__MSG_extName__", "short_name": "Comet", "description": "__MSG_extDesc__", "author": "__MSG_extName__", "default_locale": "en", "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "contentScript.bundle.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "manifest_version": 3, "background": { "service_worker": "background.bundle.js" }, "permissions": [ "tabs", "storage", "webNavigation", "sidePanel" ], "host_permissions": [ "*:\/\/*.reddit.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "48": "icon48.png" } }, "side_panel": { "default_path": "sidePanel.html" } } |