Youtube New Tab Search
A youtube tweak to open search results in a new tab so your music keeps playing in the background while you look for your next tune.
Qu'est-ce que Youtube New Tab Search ?
Youtube New Tab Search est une extension Chrome développée par Max Girkins, et sa fonction principale est "A youtube tweak to open search results in a new tab so your music keeps playing in the background while you look for your next tune.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube New Tab Search
Téléchargez les fichiers d'extension Youtube New Tab Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Youtube New Tab Search adds a button to the right of the youtube search bar that when clicked will open up search results in a new tab so that the currently playing video doesn't stop. -unobtrusive, fits youtube's native style -makes the search tab active *** newly updated to support the new youtube!
Informations de Base sur l'Extension
Nom | |
ID | lballhcooobklchmpmpneinkjafambof |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-new-tab-search/lballhcooobklchmpmpneinkjafambof |
Description | A youtube tweak to open search results in a new tab so your music keeps playing in the background while you look for your next tune. |
Taille du Fichier | 51.23 KB |
Nombre d'Installations | 303 |
Version Actuelle | 0.2 |
Dernière Mise à Jour | 2017-09-04 |
Date de Publication | 2017-09-04 |
Évaluation | 3.75/5 Total 12 Évaluations |
Développeur | Max Girkins |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube New Tab Search", "manifest_version": 2, "version": "0.2", "permissions": [ "tabs", "webNavigation" ], "description": "A youtube tweak to open search results in a new tab so your music keeps playing in the background while you look for your next tune.", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "*:\/\/www.youtube.com\/*" ], "js": [ "jquery.js", "youtubescript.js" ], "css": [ "style.css" ] } ], "background": { "scripts": [ "background.js" ] } } |