How Do You Delete The Like Button [Youtube]
This extension allows the user to remove the like button from Youtube videos.
What is How Do You Delete The Like Button [Youtube]?
How Do You Delete The Like Button [Youtube] is a Chrome extension developed by x.hiei.jaganshi.x, and its main feature is "This extension allows the user to remove the like button from Youtube videos.".
Extension Screenshots
Download How Do You Delete The Like Button [Youtube] Extension CRX File
Download How Do You Delete The Like Button [Youtube] extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | eolomlinhghnnjmbopefbpodbgpbggpb |
Official URL | https://chrome.google.com/webstore/detail/how-do-you-delete-the-lik/eolomlinhghnnjmbopefbpodbgpbggpb |
Description | This extension allows the user to remove the like button from Youtube videos. |
File Size | 7.02 KB |
Installation Count | 18 |
Current Version | 1.1 |
Last Updated | 2018-03-19 |
Publish Date | 2018-03-19 |
Rating | 5.00/5 Total 1 Ratings |
Developer | x.hiei.jaganshi.x |
Payment Type | free |
Supported Languages | 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'" } |