Youtube Video Search
Redirects the default google videos tab to search youtube, instead of the default google videos search.
Wat is Youtube Video Search?
Youtube Video Search is een Chrome-extensie ontwikkeld door jabbersofficial, en de belangrijkste functie is "Redirects the default google videos tab to search youtube, instead of the default google videos search.".
Extensie Screenshots
Download het CRX-bestand van de extensie Youtube Video Search
Download Youtube Video Search-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
When browsing google, it is sometimes more convenient to have the "videos" tab to redirect straight to youtube. This extension aims to solve this by redirecting the videos tab straight to youtube.
Basisinformatie over de Extensie
Naam | Youtube Video Search |
ID | igmgnochpgmbjdoacllndnokjkmbfkji |
Officiële URL | https://chromewebstore.google.com/detail/youtube-video-search/igmgnochpgmbjdoacllndnokjkmbfkji |
Beschrijving | Redirects the default google videos tab to search youtube, instead of the default google videos search. |
Bestandsgrootte | 46.97 KB |
Aantal Installaties | 25 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2021-04-23 |
Publicatiedatum | 2020-12-24 |
Ontwikkelaar | jabbersofficial |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Video Search", "version": "1.2", "description": "Redirects the default google videos tab to search youtube, instead of the default google videos search.", "manifest_version": 2, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/search*" ], "js": [ "jquery-3.5.1.min.js", "youtubevideosearch.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png", "default_popup": "popup.html" } } |