Remove from Feed Button for YouTube
Easily remove items from your YouTube subscription feed with a single click
¿Qué es Remove from Feed Button for YouTube?
Remove from Feed Button for YouTube es una extensión de Chrome desarrollada por Jerome Dane, y su función principal es "Easily remove items from your YouTube subscription feed with a single click".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Remove from Feed Button for YouTube
Descarga archivos de extensión Remove from Feed Button for YouTube en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Puts "X" button to the right of each videos in your YouTube subscription feed to allow removing videos with a single click. Please report issues at https://goo.gl/4IgEU1 GitHub: https://goo.gl/2NK3T Like this? You could buy me a cop of coffee: http://goo.gl/xzEAG Follow me for updates on other projects: Github: https://goo.gl/nYUgZm Google: http://goo.gl/brcnw Twitter: http://goo.gl/UTh0W Facebook: http://goo.gl/OwKIG
Información Básica de la Extensión
Nombre | Remove from Feed Button for YouTube |
ID | ogclfblkiagkkfpdbbbphchgfkieecml |
URL Oficial | https://chromewebstore.google.com/detail/remove-from-feed-button-f/ogclfblkiagkkfpdbbbphchgfkieecml |
Descripción | Easily remove items from your YouTube subscription feed with a single click |
Tamaño del Archivo | 48.05 KB |
Cantidad de Instalaciones | 549 |
Versión Actual | 0.0.7 |
Última Actualización | 2015-11-21 |
Fecha de Publicación | 2015-11-21 |
Calificación | 3.67/5 Total de 43 Calificaciones |
Desarrollador | Jerome Dane |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/JeromeDane/YouTube-Remove-From-Feed-Button |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove from Feed Button for YouTube", "description": "Easily remove items from your YouTube subscription feed with a single click", "version": "0.0.7", "options_page": "options.html", "permissions": [ "http:\/\/www.youtube.com\/feed\/subscriptions*", "https:\/\/www.youtube.com\/feed\/subscriptions*" ], "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "web_accessible_resources": [ "images\/close_16_r8.png" ], "content_scripts": [ { "js": [ "content.js" ], "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "run_at": "document_end" } ] } |