MyTwoCents Comment Aggregator
Comment aggregator for Reddit, HackerNews, and Facebook
¿Qué es MyTwoCents Comment Aggregator?
MyTwoCents Comment Aggregator es una extensión de Chrome desarrollada por trahn, y su función principal es "Comment aggregator for Reddit, HackerNews, and Facebook".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión MyTwoCents Comment Aggregator
Descarga archivos de extensión MyTwoCents Comment Aggregator en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
MyTwoCents is a comment aggregator as a browser extension. It currently puts Reddit, HackerNews, and Facebook comments on any website you are visiting. The idea is to have all comments in one place right next to the website they are referring to - as you browse the web. You can see it in action before installing on this site: https://mytwocentscomments.website/
Información Básica de la Extensión
Nombre | MyTwoCents Comment Aggregator |
ID | gmcmamjffgpegfhbkbldeamchnadoick |
URL Oficial | https://chromewebstore.google.com/detail/mytwocents-comment-aggreg/gmcmamjffgpegfhbkbldeamchnadoick |
Descripción | Comment aggregator for Reddit, HackerNews, and Facebook |
Tamaño del Archivo | 107 KB |
Cantidad de Instalaciones | 29 |
Versión Actual | 0.1.3 |
Última Actualización | 2018-02-01 |
Fecha de Publicación | 2018-02-01 |
Calificación | 4.25/5 Total de 4 Calificaciones |
Desarrollador | trahn |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MyTwoCents Comment Aggregator", "description": "Comment aggregator for Reddit, HackerNews, and Facebook", "version": "0.1.3", "content_security_policy": "script-src 'self'; object-src 'self'", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "browser_action": { "default_icon": "icons\/icon16.png", "default_title": "Show comments!" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "activeTab", "storage", "webNavigation" ], "web_accessible_resources": [ "iframe.html", "icons\/icon128.png", "content.js", "content.css", "lib\/bootstrap.min.css", "lib\/bootstrap.min.js", "lib\/jquery-3.2.1.slim.min.js", "lib\/popper.min.js", "lib\/embedd.min.js", "iframe.css", "iframe.js" ] } |