YouTube™ Dislike Counter

YouTube™ Dislike Counter brings back the functionality to view dislikes on the YouTube™ platform.

YouTube™ Dislike Counterคืออะไร?

YouTube™ Dislike Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Multiple URL Opener และคุณลักษณะหลักของมันคือ "YouTube™ Dislike Counter brings back the functionality to view dislikes on the YouTube™ platform."

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

screenshot

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

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

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

                        Enable YouTube™ Dislikes brings back the feature of displaying dislike statistics on YouTube™. This extension restores the functionality that has been removed by YouTube™.

Key Features:

👎 Dislike Count: Without a single click, see the number of dislikes on any YouTube video.

🔧 User-Friendly: Easy to install and use – no complicated setup required.

🔒 Secure: Interact with YouTube safely and securely.

🔗 Share content on Facebook.

How to Use:

1. Install the extension.
2. Visit any YouTube video.
3. Instantly view the dislike count.


📣 Feedback and Support:
We value your feedback! If you have suggestions or encounter any issues, please don't hesitate to reach out to our support team.

Install YouTube™ Dislike Counter today to easily check dislike counts on YouTube videos!

Credit:
https://github.com/Anarios/return-youtube-dislike                    

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

ชื่อ YouTube™ Dislike Counter YouTube™ Dislike Counter
ID pbaglaoflgaplhaiegappfpamiioogfb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-dislike-counter/pbaglaoflgaplhaiegappfpamiioogfb
คำอธิบาย YouTube™ Dislike Counter brings back the functionality to view dislikes on the YouTube™ platform.
ขนาดไฟล์ 76.59 KB
จำนวนการติดตั้ง 3,842
เวอร์ชันปัจจุบัน 1.4.0
อัปเดตครั้งล่าสุด 2024-02-19
วันที่เผยแพร่ 2023-06-07
คะแนน 3.30/5 รวมทั้งหมด 27 คะแนน
ผู้พัฒนา Multiple URL Opener
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/1c9h06lhy3Fx9Km8rxEreC07eNDBQ2uat59vqoQJaaxE
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube\u2122 Dislike Counter",
    "description": "YouTube\u2122 Dislike Counter brings back the functionality to view dislikes on the YouTube\u2122 platform.",
    "version": "1.4.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "\/js\/background.js"
    },
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "gcm",
        "notifications"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.music.youtube.com\/*"
            ],
            "js": [
                "\/js\/content_script.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ryd.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "popup.html",
        "open_in_tab": false
    }
}