View-Like Ratio for YouTube

Add display to the YouTube watch page to show a view-to-like ratio or percentage.

View-Like Ratio for YouTubeคืออะไร?

View-Like Ratio for YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย flootah และคุณลักษณะหลักของมันคือ "Add display to the YouTube watch page to show a view-to-like ratio or percentage."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย View-Like Ratio for YouTube

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

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

                        With YouTube dislikes on the way out, there needs to be an alternative way to judge a video's quality. This extension brings a solution by showing how often viewers decide to like a video. This metric can be useful when comparing videos of similar content or by the same creator.                    

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

ชื่อ View-Like Ratio for YouTube View-Like Ratio for YouTube
ID lfckpofpbpnedmdplciiilidanpaoemn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/view-like-ratio-for-youtu/lfckpofpbpnedmdplciiilidanpaoemn
คำอธิบาย Add display to the YouTube watch page to show a view-to-like ratio or percentage.
ขนาดไฟล์ 16.66 KB
จำนวนการติดตั้ง 146
เวอร์ชันปัจจุบัน 0.4
อัปเดตครั้งล่าสุด 2022-12-07
วันที่เผยแพร่ 2021-12-01
คะแนน 3.29/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา flootah
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://flootah.dev/about/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "View-Like Ratio for YouTube",
    "description": "Add display to the YouTube watch page to show a view-to-like ratio or percentage.",
    "version": "0.4",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "viewlike.css"
            ],
            "js": [
                "viewlike.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "viewlike128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "viewlike.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}