TL;DR - Webpage Summarizer
Summarizes webpages
¿Qué es TL;DR - Webpage Summarizer?
TL;DR - Webpage Summarizer es una extensión de Chrome desarrollada por Unknown, y su función principal es "Summarizes webpages".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión TL;DR - Webpage Summarizer
Descarga archivos de extensión TL;DR - Webpage Summarizer 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
The extension provides a one-click way to get a condensed synopsis/summary of news articles, blog posts, and other content online for quick and easy reading. The plugin analyzes the content and creates summarized versions in three different lengths.
Información Básica de la Extensión
Nombre | TL;DR - Webpage Summarizer |
ID | ibekajpmhffhfhnappgjngdehfjlonhd |
URL Oficial | https://chromewebstore.google.com/detail/tldr-webpage-summarizer/ibekajpmhffhfhnappgjngdehfjlonhd |
Descripción | Summarizes webpages |
Tamaño del Archivo | 33.69 KB |
Cantidad de Instalaciones | 52 |
Versión Actual | 4.0 |
Última Actualización | 2018-05-11 |
Fecha de Publicación | 2018-05-11 |
Desarrollador | Unknown |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TL;DR - Webpage Summarizer", "version": "4.0", "description": "Summarizes webpages", "permissions": [ "activeTab", "tabs", "*:\/\/*.smmry.com\/*" ], "icons": { "48": "icons\/border-48.png" }, "browser_action": { "browser_style": true, "default_popup": "popup\/choose_length_page.html", "default_icon": { "16": "icons\/summarizer-icon-16.png", "32": "icons\/summarizer-icon-32.png" } }, "content_scripts": [ { "run_at": "document_end", "js": [ "polyfills\/browser-polyfill.js", "inject-content\/inject.js" ], "matches": [ "*:\/\/*\/*" ] } ], "web_accessible_resources": [ "inject-content\/inject.html", "inject-content\/cleanslate.css" ] } |