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 |
| 官方網址 | 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"
]
} | |