TL;DR - Webpage Summarizer
Summarizes webpages
什么是TL;DR - Webpage Summarizer?
TL;DR - Webpage Summarizer是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Summarizes webpages”。
扩展截图
下载TL;DR - Webpage Summarizer扩展crx文件
下载TL;DR - Webpage Summarizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
]
} | |