Thumbnail Rating Bar for YouTube™

Displays a rating bar (likes/dislikes) on the bottom of every YouTube™ video thumbnail.

Thumbnail Rating Bar for YouTube™คืออะไร?

Thumbnail Rating Bar for YouTube™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย elliotwaite และคุณลักษณะหลักของมันคือ "Displays a rating bar (likes/dislikes) on the bottom of every YouTube™ video thumbnail."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Thumbnail Rating Bar for YouTube™

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

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

                        This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube

Thanks. Enjoy!

YouTube™ is a trademark of Google LLC. Use of this trademark is subject to Google Permissions.                    

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

ชื่อ Thumbnail Rating Bar for YouTube™ Thumbnail Rating Bar for YouTube™
ID cmlddjbnoehmihdmfhaacemlpgfbpoeb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/thumbnail-rating-bar-for/cmlddjbnoehmihdmfhaacemlpgfbpoeb
คำอธิบาย Displays a rating bar (likes/dislikes) on the bottom of every YouTube™ video thumbnail.
ขนาดไฟล์ 134 KB
จำนวนการติดตั้ง 24,787
เวอร์ชันปัจจุบัน 1.8.16
อัปเดตครั้งล่าสุด 2024-01-24
วันที่เผยแพร่ 2020-05-30
คะแนน 4.62/5 รวมทั้งหมด 261 คะแนน
ผู้พัฒนา elliotwaite
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube
URL หน้าช่วยเหลือ https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Thumbnail Rating Bar for YouTube\u2122",
    "version": "1.8.16",
    "description": "Displays a rating bar (likes\/dislikes) on the bottom of every YouTube\u2122 video thumbnail.",
    "author": "Elliot Waite",
    "icons": {
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon96.png",
        "default_title": "Settings",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": false
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "lib\/jquery-3.6.1.min.js",
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.returnyoutubedislikeapi.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/bar-blue-gray.css",
                "css\/bar-blue-gray-video-page.css",
                "css\/bar-bottom-separator.css",
                "css\/bar-bottom-tooltip.css",
                "css\/bar-bottom.css",
                "css\/bar-green-red.css",
                "css\/bar-green-red-video-page.css",
                "css\/bar-tooltip.css",
                "css\/bar-top-separator.css",
                "css\/bar-top-tooltip.css",
                "css\/bar-top.css",
                "css\/bar.css"
            ],
            "matches": [],
            "extension_ids": []
        }
    ]
}