How Do You Delete The Like Button [Youtube]

This extension allows the user to remove the like button from Youtube videos.

How Do You Delete The Like Button [Youtube] là gì?

How Do You Delete The Like Button [Youtube] là một tiện ích mở rộng Chrome được phát triển bởi x.hiei.jaganshi.x, và tính năng chính của nó là "This extension allows the user to remove the like button from Youtube videos.".

Ả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 How Do You Delete The Like Button [Youtube]

Tải xuống các tệp mở rộng How Do You Delete The Like Button [Youtube] 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

                        How do you delete the like button? Now its possible. Click the extension icon to remove the like button from youtube videos, so you don't "accidentally" click on it. Automatically removes "Thumbs Up" from Logan Paul videos.                    

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

Tên How Do You Delete The Like Button [Youtube] How Do You Delete The Like Button [Youtube]
ID eolomlinhghnnjmbopefbpodbgpbggpb
URL Chính Thức https://chrome.google.com/webstore/detail/how-do-you-delete-the-lik/eolomlinhghnnjmbopefbpodbgpbggpb
Mô tả This extension allows the user to remove the like button from Youtube videos.
Kích Thước Tệp 7.02 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-03-19
Ngày Phát Hành 2018-03-19
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển x.hiei.jaganshi.x
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",
    "manifest_version": 2,
    "name": "How Do You Delete The Like Button [Youtube]",
    "description": "This extension allows the user to remove the like button from Youtube videos.",
    "version": "1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google.com; object-src 'self'"
}