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]คืออะไร?

How Do You Delete The Like Button [Youtube] เป็นส่วนขยายของ Chrome ที่พัฒนาโดย x.hiei.jaganshi.x และคุณลักษณะหลักของมันคือ "This extension allows the user to remove the like button from Youtube videos."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย How Do You Delete The Like Button [Youtube]

ดาวน์โหลดไฟล์ส่วนขยาย How Do You Delete The Like Button [Youtube] ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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.                    

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

ชื่อ How Do You Delete The Like Button [Youtube] How Do You Delete The Like Button [Youtube]
ID eolomlinhghnnjmbopefbpodbgpbggpb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/how-do-you-delete-the-lik/eolomlinhghnnjmbopefbpodbgpbggpb
คำอธิบาย This extension allows the user to remove the like button from Youtube videos.
ขนาดไฟล์ 7.02 KB
จำนวนการติดตั้ง 18
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2018-03-19
วันที่เผยแพร่ 2018-03-19
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา x.hiei.jaganshi.x
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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'"
}