Youtube Likes / Views

Simple youtubeLikes / Views ratio ( percentage )

Youtube Likes / Views là gì?

Youtube Likes / Views là một tiện ích mở rộng Chrome được phát triển bởi cosmin.serboteiu, và tính năng chính của nó là "Simple youtubeLikes / Views ratio ( percentage )".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube Likes / Views

Tải xuống các tệp mở rộng Youtube Likes / Views 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

                        A simple extension that will display the ratio of likes / views as a percentage. This is quite useful in the current context in which there is no dislike counter.                    

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

Tên Youtube Likes / Views Youtube Likes / Views
ID hpllifddocjegddmfhpknnncbciekpfe
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-likes-views/hpllifddocjegddmfhpknnncbciekpfe
Mô tả Simple youtubeLikes / Views ratio ( percentage )
Kích Thước Tệp 10.56 KB
Số Lần Cài Đặt 99
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2021-11-23
Ngày Phát Hành 2021-11-23
Đánh Giá 4.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển cosmin.serboteiu
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Likes \/ Views",
    "description": "Simple youtubeLikes \/ Views ratio ( percentage )",
    "version": "0.2",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ]
}