TLDR: News Article Summarizer
This extension automatically summarizes news articles.
ما هو TLDR: News Article Summarizer؟
TLDR: News Article Summarizer هو إضافة Chrome تم تطويرها بواسطة Abhishek Pant، والميزة الرئيسية لها هي "This extension automatically summarizes news articles.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة TLDR: News Article Summarizer
قم بتنزيل ملفات الامتداد TLDR: News Article Summarizer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | |
ID | omnkfiggdjenoclnfdhijodllleflpjk |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/tldr-news-article-summari/omnkfiggdjenoclnfdhijodllleflpjk |
الوصف | This extension automatically summarizes news articles. |
حجم الملف | 364 KB |
عدد التثبيتات | 362 |
النسخة الحالية | 0.1 |
آخر تحديث | 2014-12-05 |
تاريخ النشر | 2014-12-05 |
تقييم | 1.00/5 مجموع تقييمات 3 |
المطور | Abhishek Pant |
نوع الدفع | free |
موقع الإضافة | http://news-article-summarizer.herokuapp.com/ |
اللغات المدعومة | 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" } } |