How Do You Delete The Like Button [Youtube]
This extension allows the user to remove the like button from Youtube videos.
Co je How Do You Delete The Like Button [Youtube]?
How Do You Delete The Like Button [Youtube] je rozšíření Chrome vyvinuté x.hiei.jaganshi.x, a jeho hlavní funkcí je „This extension allows the user to remove the like button from Youtube videos.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření How Do You Delete The Like Button [Youtube]
Stáhněte si soubory rozšíření How Do You Delete The Like Button [Youtube] ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | eolomlinhghnnjmbopefbpodbgpbggpb |
Oficiální URL | https://chrome.google.com/webstore/detail/how-do-you-delete-the-lik/eolomlinhghnnjmbopefbpodbgpbggpb |
Popis | This extension allows the user to remove the like button from Youtube videos. |
Velikost souboru | 7.02 KB |
Počet instalací | 18 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2018-03-19 |
Datum Vydání | 2018-03-19 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | x.hiei.jaganshi.x |
Typ Platby | free |
Podporované Jazyky | 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'" } |