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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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'"
}