Youtube Dislike Count Extention

This extention enables the YouTube dislike count!

Youtube Dislike Count Extention là gì?

Youtube Dislike Count Extention là một tiện ích mở rộng Chrome được phát triển bởi Ausama95, và tính năng chính của nó là "This extention enables the YouTube dislike count!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube Dislike Count Extention

Tải xuống các tệp mở rộng Youtube Dislike Count Extention dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension brings back the ability to be able to see the dislike ratio of any YouTube video.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube Dislike Count Extention Youtube Dislike Count Extention
ID ihelhpoojojegneekjecpiobfkbfcibi
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-dislike-count-ext/ihelhpoojojegneekjecpiobfkbfcibi
Mô tả This extention enables the YouTube dislike count!
Kích Thước Tệp 24.13 KB
Số Lần Cài Đặt 105
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2022-01-25
Ngày Phát Hành 2022-01-24
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Ausama95
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Dislike Count Extention",
    "description": "This extention enables the YouTube dislike count!",
    "version": "0.2",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/images\/obj-16x16.png",
            "32": ".\/images\/obj-32x32.png",
            "48": ".\/images\/obj-48x48.png",
            "128": ".\/images\/obj-128x128.png"
        }
    },
    "icons": {
        "16": ".\/images\/obj-16x16.png",
        "32": ".\/images\/obj-32x32.png",
        "48": ".\/images\/obj-48x48.png",
        "128": ".\/images\/obj-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start",
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}