Youtube Description Preview

Provides a unobtrusive description preview under youtube video thumbnails.

Youtube Description Previewคืออะไร?

Youtube Description Preview เป็นส่วนขยายของ Chrome ที่พัฒนาโดย despreview และคุณลักษณะหลักของมันคือ "Provides a unobtrusive description preview under youtube video thumbnails."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Description Preview

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

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

                        On YouTube click the "+" button to get a preview of the description of the video. 

Change the text that shows and hides the description preview to whatever you want it to be by clicking on the description preview icon in chrome when on youtube.com.

View full descriptions with API implementation. Create your own API key (directions here: https://github.com/despreview/Youtube-Description-Preview) and view full descriptions on videos before you click on them. 

Note: This feature requires that you make your own API key due to restrictions. You can still get a small preview of the description without an API key.

Permissions:
declarativeContent: Needed to detect if you're on youtube.com.
storage: Used to store the users choice for the view description and hide description text. 
hostPermissions: Used to run script that provides all functionality for when the user visits YouTube.                    

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

ชื่อ Youtube Description Preview Youtube Description Preview
ID hhflgmacocoimdkagpaifcmhdbgnnmii
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-description-previ/hhflgmacocoimdkagpaifcmhdbgnnmii
คำอธิบาย Provides a unobtrusive description preview under youtube video thumbnails.
ขนาดไฟล์ 140 KB
จำนวนการติดตั้ง 126
เวอร์ชันปัจจุบัน 1.601
อัปเดตครั้งล่าสุด 2024-03-03
วันที่เผยแพร่ 2020-09-30
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา despreview
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://forms.gle/XxvcSZfafEbHbsZy8
URL หน้านโยบายความเป็นส่วนตัว https://www.freeprivacypolicy.com/live/93351a24-de7c-4338-beeb-6c077eebcee8
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Description Preview",
    "version": "1.601",
    "description": "Provides a unobtrusive description preview under youtube video thumbnails.",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "myStyles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.js",
                "images\/View.png",
                "image\/Hide.png"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/DP16.png",
            "32": "images\/DP32.png",
            "48": "images\/DP48.png",
            "128": "images\/DP128.png"
        }
    },
    "icons": {
        "16": "images\/DP16.png",
        "32": "images\/DP32.png",
        "48": "images\/DP48.png",
        "128": "images\/DP128.png"
    },
    "manifest_version": 3
}