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"
]
} | |