TLDR: News Article Summarizer
This extension automatically summarizes news articles.
TLDR: News Article Summarizer là gì?
TLDR: News Article Summarizer là một tiện ích mở rộng Chrome được phát triển bởi Abhishek Pant, và tính năng chính của nó là "This extension automatically summarizes news articles.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng TLDR: News Article Summarizer
Tải xuống các tệp mở rộng TLDR: News Article Summarizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | omnkfiggdjenoclnfdhijodllleflpjk |
URL Chính Thức | https://chrome.google.com/webstore/detail/tldr-news-article-summari/omnkfiggdjenoclnfdhijodllleflpjk |
Mô tả | This extension automatically summarizes news articles. |
Kích Thước Tệp | 364 KB |
Số Lần Cài Đặt | 362 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2014-12-05 |
Ngày Phát Hành | 2014-12-05 |
Đánh Giá | 1.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Abhishek Pant |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://news-article-summarizer.herokuapp.com/ |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |