QuickTube Youtube Video Summarizer

The main motivation for making QuickTube was to save time. There are countless occurrences where Youtube videos lure users in with…

QuickTube Youtube Video Summarizerคืออะไร?

QuickTube Youtube Video Summarizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alex Parsh และคุณลักษณะหลักของมันคือ "The main motivation for making QuickTube was to save time. There are countless occurrences where Youtube videos lure users in with…"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย QuickTube Youtube Video Summarizer

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

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

                        The main motivation for making QuickTube was to save time. There are countless occurrences where Youtube videos lure users in with eye catching titles and thumbnails, the next thing they know, half the day has passed. There are several workarounds to saving time already, such as watching the video on double speed, however this only reduces the watch time by half. 

This is where QuickTube comes in, by summarizing the captions or transcript of any given video, it is able to pull the most important information and condense it into a small paragraph, reading this paragraph would take a tiny fraction of the total length of the video, while still providing the most important points to the user.

No more getting sidetracked by eye catching videos, summarize them and get back to work.                    

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

ชื่อ QuickTube Youtube Video Summarizer QuickTube Youtube Video Summarizer
ID kcdfmdmdogpfcmbdgafnphllmkloopkd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quicktube-youtube-video-s/kcdfmdmdogpfcmbdgafnphllmkloopkd
คำอธิบาย The main motivation for making QuickTube was to save time. There are countless occurrences where Youtube videos lure users in with…
ขนาดไฟล์ 28.99 KB
จำนวนการติดตั้ง 1,289
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2020-09-01
วันที่เผยแพร่ 2020-08-31
คะแนน 2.44/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Alex Parsh
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QuickTube Youtube Video Summarizer",
    "short_name": "QuickTube",
    "version": "1.2",
    "manifest_version": 2,
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgWsvMSGVy9dvw0v59somiRqrqHQTJV66zUQBIUy8Y1\/OldvtkrLDBkbi38vVhbce2J5ArHYVq3aYAE4VOZ++iBQL2I\/qI9gEGHh\/V3+ch2GEoLSuNi4o6xiWcCdJlmxVn762KC4nioL+FRw1bOldbGso0di9yZtrfyHoZq7VpDEzEsfp8mdYaw89wLAP26pYy+4uaG5aSZs+T7i49LPjopVHP525sTyIwbbjCtiGr8SXcD6igKywHb2QYGVtM\/bJI6iIZ47ohqKWPk855+ZCvRHkcYY7BX9hsc0MGpaM3XjUDJm4bCbo6F82SL9n5dSDj0c9Pjnw5AMrM7qH4YPpWQIDAQAB",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/unpkg.com\/axios\/dist\/axios.min.js; object-src 'self'",
    "browser_action": {
        "default_popup": "loginpopup.html",
        "default_title": "Summarize Youtube Videos"
    },
    "oauth2": {
        "client_id": "35361425869-i8uar324vrlptb8e52m30mpqa7ctuum7.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email",
            "https:\/\/www.googleapis.com\/auth\/userinfo.profile",
            "https:\/\/www.googleapis.com\/auth\/youtube.force-ssl"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "identity"
    ]
}