Too Long; Didnt Read

Text summary tool in your browser

Too Long; Didnt Readคืออะไร?

Too Long; Didnt Read เป็นส่วนขยายของ Chrome ที่พัฒนาโดย christinelovett1993 และคุณลักษณะหลักของมันคือ "Text summary tool in your browser"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Too Long; Didnt Read

ดาวน์โหลดไฟล์ส่วนขยาย Too Long; Didnt Read ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Ever want to read the news but just don't have the time? Now you can get short summaries of articles with the click of a button! Catch up on the news in half the time with our browser extension Too Long; Didnt Read. With the click of a button you can summarize the article on the current page, saving you time in your busy day.                    

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

ชื่อ Too Long; Didnt Read Too Long; Didnt Read
ID pabpikafhemmmgomocobeabhodfcclpl
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/too-long-didnt-read/pabpikafhemmmgomocobeabhodfcclpl
คำอธิบาย Text summary tool in your browser
ขนาดไฟล์ 1.76 MB
จำนวนการติดตั้ง 477
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2017-06-06
วันที่เผยแพร่ 2017-06-06
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา christinelovett1993
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Too Long; Didnt Read",
    "description": "Text summary tool in your browser",
    "version": "1.1",
    "permissions": [
        "tabs",
        "http:\/\/boilerpipe-web.appspot.com\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "icons": {
        "128": "images\/folded-newspaper.png"
    },
    "browser_action": {
        "default_icon": "images\/folded-newspaper.png",
        "default_popup": "dialogue.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}