TL;DR - Webpage Summarizer
Summarizes webpages
TL;DR - Webpage Summarizer क्या है?
TL;DR - Webpage Summarizer Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Summarizes webpages"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TL;DR - Webpage Summarizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | TL;DR - Webpage Summarizer |
ID | ibekajpmhffhfhnappgjngdehfjlonhd |
आधिकारिक URL | https://chromewebstore.google.com/detail/tldr-webpage-summarizer/ibekajpmhffhfhnappgjngdehfjlonhd |
विवरण | Summarizes webpages |
फ़ाइल का आकार | 33.69 KB |
स्थापना संख्या | 52 |
वर्तमान संस्करण | 4.0 |
अंतिम अपडेट | 2018-05-11 |
प्रकाशन तिथि | 2018-05-11 |
डेवलपर | Unknown |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" ] } |