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.
Was ist Youtube New Tab Search?
Youtube New Tab Search ist eine Chrome-Erweiterung, die von Max Girkins entwickelt wurde, und ihr Hauptmerkmal ist "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.".
Erweiterungsscreenshots
Youtube New Tab Search-Erweiterungs-CRX-Datei herunterladen
Laden Sie Youtube New Tab Search-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | |
ID | lballhcooobklchmpmpneinkjafambof |
Offizielle URL | https://chrome.google.com/webstore/detail/youtube-new-tab-search/lballhcooobklchmpmpneinkjafambof |
Beschreibung | 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. |
Dateigröße | 51.23 KB |
Installationsanzahl | 303 |
Aktuelle Version | 0.2 |
Letztes Update | 2017-09-04 |
Veröffentlichungsdatum | 2017-09-04 |
Bewertung | 3.75/5 Insgesamt 12 Bewertungen |
Entwickler | Max Girkins |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } } |