Return Standalone Youtube Video Page
Opens the Video seperately in the same tab instead of being embedded in the page, just like it was before the update.
¿Qué es Return Standalone Youtube Video Page?
Return Standalone Youtube Video Page es una extensión de Chrome desarrollada por https://sanjibsen.com, y su función principal es "Opens the Video seperately in the same tab instead of being embedded in the page, just like it was before the update.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Return Standalone Youtube Video Page
Descarga archivos de extensión Return Standalone Youtube Video Page 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
## 👏 Free and Open Source - This extension will always be free and open sourced. - Source Code: https://github.com/sanjib-sen/return-standalone-youtube-video-page ## 🎉 Features - Very Tiny (> 8KB) and simple to use - Made in Pure JavaScript (Less than 30 Lines of Code) - Return the standalone video page - Return the standalone playlist page - Supports Any chromium based browser. (Support for Firefox is coming soon based on user requests) ## ✍️ Authors - [@sanjib-sen](https://github.com/sanjib-sen) - Idea & Initial work ## 🎉 Acknowledgements - The UI is slightly inspired by [Return YouTube Dislike](https://github.com/Anarios/return-youtube-dislike)
Información Básica de la Extensión
Nombre | Return Standalone Youtube Video Page |
ID | kpeeiilndiddkdpbhdafkkgnjjlnllob |
URL Oficial | https://chromewebstore.google.com/detail/return-standalone-youtube/kpeeiilndiddkdpbhdafkkgnjjlnllob |
Descripción | Opens the Video seperately in the same tab instead of being embedded in the page, just like it was before the update. |
Tamaño del Archivo | 9.89 KB |
Cantidad de Instalaciones | 60 |
Versión Actual | 0.2 |
Última Actualización | 2023-05-15 |
Fecha de Publicación | 2023-05-08 |
Calificación | 3.33/5 Total de 3 Calificaciones |
Desarrollador | https://sanjibsen.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.sanjibsen.com/return-standalone-youtube-video-page |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Return Standalone Youtube Video Page", "description": "Opens the Video seperately in the same tab instead of being embedded in the page, just like it was before the update.", "version": "0.2", "author": "[email protected]", "short_name": "RYVS", "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "permissions": [ "storage", "tabs" ], "action": { "default_icon": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "default_title": "Bring Back Standalone Youtube Video Page", "default_popup": "src\/popup.html" }, "background": { "service_worker": "src\/scripts\/background.js" } } |