PlayerTube

The secret ingredient for a older (and better) looking YouTube.

PlayerTubeคืออะไร?

PlayerTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ktg5 และคุณลักษณะหลักของมันคือ "The secret ingredient for a older (and better) looking YouTube."

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

screenshot
screenshot
screenshot

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

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

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

                        PlayerTube is a free browser extension that is used for editing and changing up the style of the current YouTube player, to a more older (and better) look. PlayerTube has a good amount of features that can be either enabled or disabled from its menu. More than that, users can customize the style of their player and share it across the web for others to use.

Latest update (v1.7):
This update took too long to make... But I can say that this extension is now 90% stable & finished.
* Fix #20 -- "narrow video is stretched (zoomed) to fit".
* Fix #24 -- "[ Bug ] Embed Fixes & Resize Issues | [ 3rd-party ] YouTube Redux messes with PlayerTube".
* Volume icon now changes when the user set the volume below 75% & 25% using current volume detection.
* Added "no-left-button" & "no-right-button" detection for themes that need it (like 2006).
* Remade the Watch Later button used in 2012 & 2011 due to issues.
* Allow "Alternate Theme" to be used when "Custom Themes" are enabled, allowing users to use the alternate buttons from that alternate theme.
* Fix the clip icon by the time display for clips on the 2006 theme (using this clip lol).
* Fix past update logs.
* Fixed multiple other small details CSS-wide.
* Update GitHub issue templates.                    

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

ชื่อ PlayerTube PlayerTube
ID clepldejdgjigblladmahdigbllohioe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/playertube/clepldejdgjigblladmahdigbllohioe
คำอธิบาย The secret ingredient for a older (and better) looking YouTube.
ขนาดไฟล์ 1.77 MB
จำนวนการติดตั้ง 278
เวอร์ชันปัจจุบัน 1.7
อัปเดตครั้งล่าสุด 2024-02-24
วันที่เผยแพร่ 2023-09-21
คะแนน 4.71/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา ktg5
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ktg5/PlayerTube
URL หน้าช่วยเหลือ https://github.com/ktg5/PlayerTube/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "PlayerTube",
    "description": "The secret ingredient for a older (and better) looking YouTube.",
    "version": "1.7",
    "homepage_url": "https:\/\/github.com\/ktg5\/PlayerTube",
    "background": {
        "service_worker": "src\/background.js"
    },
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": "img\/playertube\/icon.png"
    },
    "icons": {
        "16": "img\/playertube\/resize\/16.png",
        "32": "img\/playertube\/resize\/32.png",
        "48": "img\/playertube\/resize\/48.png",
        "128": "img\/playertube\/resize\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "src\/setup.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "src\/main.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/embed\/*"
            ],
            "js": [
                "src\/setup.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/embed\/*"
            ],
            "js": [
                "src\/main.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "resources": [
                "css\/*",
                "src\/*",
                "img\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}