Return YouTube Dislikes Counter

Returning the ability to see the number of dislikes

Return YouTube Dislikes Counterคืออะไร?

Return YouTube Dislikes Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kronus และคุณลักษณะหลักของมันคือ "Returning the ability to see the number of dislikes"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Return YouTube Dislikes Counter

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

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

                        The extension returns the ability to see how many people have put dislikes.                    

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

ชื่อ Return YouTube Dislikes Counter Return YouTube Dislikes Counter
ID oljgiamaflelpmdlmdjpooahpmiobclo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/return-youtube-dislikes-c/oljgiamaflelpmdlmdjpooahpmiobclo
คำอธิบาย Returning the ability to see the number of dislikes
ขนาดไฟล์ 16.96 KB
จำนวนการติดตั้ง 161
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2021-12-23
วันที่เผยแพร่ 2021-11-30
ผู้พัฒนา Kronus
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Return YouTube Dislikes Counter",
    "description": "Returning the ability to see the number of dislikes",
    "version": "1.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "ryd.background.js"
    },
    "icons": {
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.music.youtube.com\/*"
            ],
            "js": [
                "bundled-content-script.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ryd.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}