TLDR: News Article Summarizer
This extension automatically summarizes news articles.
Cos'è TLDR: News Article Summarizer?
TLDR: News Article Summarizer è un'estensione di Chrome sviluppata da Abhishek Pant, e la sua funzione principale è "This extension automatically summarizes news articles.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TLDR: News Article Summarizer
Scarica i file di estensione TLDR: News Article Summarizer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
When you are browsing a supported website, click the icon in the Omnibox to obtain a brief five-line summary of the news article. Also available as a stand-alone web-app here: http://news-article-summarizer.herokuapp.com/ Note: Currently supports only NYTimes. Developed by: Abhishek Pant Aniruddha Gupta Ankit Jain Bhaskar Bagchi Shushman Chowdhary Rishi Mehta Utkarsh Jaiswal
Informazioni di Base sull'Estensione
Nome | |
ID | omnkfiggdjenoclnfdhijodllleflpjk |
URL Ufficiale | https://chrome.google.com/webstore/detail/tldr-news-article-summari/omnkfiggdjenoclnfdhijodllleflpjk |
Descrizione | This extension automatically summarizes news articles. |
Dimensione del File | 364 KB |
Conteggio Installazioni | 362 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2014-12-05 |
Data di Pubblicazione | 2014-12-05 |
Valutazione | 1.00/5 Totale 3 Valutazioni |
Sviluppatore | Abhishek Pant |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://news-article-summarizer.herokuapp.com/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TLDR: News Article Summarizer", "description": "This extension automatically summarizes news articles.", "version": "0.1", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "http:\/\/www.nytimes.com\/*", "http:\/\/news.yahoo.com\/*", "http:\/\/localhost:8000\/*", "http:\/\/news-article-summarizer.herokuapp.com\/*", "tabs" ], "web_accessible_resources": [ "circle-loading-animation.gif" ], "page_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "TL;DR supports this site." }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png", "256": "images\/icon256.png" } } |