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]是由x.hiei.jaganshi.x開發的Chrome擴展程式,該擴展的主要功能是“This extension allows the user to remove the like button from Youtube videos.”。

擴展截圖

screenshot

下載How Do You Delete The Like Button [Youtube]擴展crx文件

下載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
官方網址 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'"
}