TLDR: News Article Summarizer
This extension automatically summarizes news articles.
Co to jest TLDR: News Article Summarizer?
TLDR: News Article Summarizer to rozszerzenie Chrome opracowane przez Abhishek Pant, a jego główną funkcją jest „This extension automatically summarizes news articles.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TLDR: News Article Summarizer
Pobierz pliki rozszerzeń TLDR: News Article Summarizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | omnkfiggdjenoclnfdhijodllleflpjk |
Oficjalny URL | https://chrome.google.com/webstore/detail/tldr-news-article-summari/omnkfiggdjenoclnfdhijodllleflpjk |
Opis | This extension automatically summarizes news articles. |
Rozmiar pliku | 364 KB |
Liczba instalacji | 362 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2014-12-05 |
Data Publikacji | 2014-12-05 |
Ocena | 1.00/5 Łącznie 3 Oceny |
Deweloper | Abhishek Pant |
Typ Płatności | free |
Strona Rozszerzenia | http://news-article-summarizer.herokuapp.com/ |
Obsługiwane Języki | 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" } } |