TL;DR - Webpage Summarizer
Summarizes webpages
Wat is TL;DR - Webpage Summarizer?
TL;DR - Webpage Summarizer is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Summarizes webpages".
Extensie Screenshots
Download het CRX-bestand van de extensie TL;DR - Webpage Summarizer
Download TL;DR - Webpage Summarizer-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
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.
Basisinformatie over de Extensie
Naam | TL;DR - Webpage Summarizer |
ID | ibekajpmhffhfhnappgjngdehfjlonhd |
Officiële URL | https://chromewebstore.google.com/detail/tldr-webpage-summarizer/ibekajpmhffhfhnappgjngdehfjlonhd |
Beschrijving | Summarizes webpages |
Bestandsgrootte | 33.69 KB |
Aantal Installaties | 52 |
Huidige Versie | 4.0 |
Laatst Bijgewerkt | 2018-05-11 |
Publicatiedatum | 2018-05-11 |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |