TL;DR - Webpage Summarizer

Summarizes webpages

TL;DR - Webpage Summarizerคืออะไร?

TL;DR - Webpage Summarizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Summarizes webpages"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TL;DR - Webpage Summarizer

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ TL;DR - Webpage Summarizer 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"
    ]
}