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.
Τι είναι το Youtube New Tab Search;
Το Youtube New Tab Search είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Max Girkins, και η κύρια λειτουργία του είναι "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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Youtube New Tab Search
Λήψη αρχείων επέκτασης Youtube New Tab Search σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | lballhcooobklchmpmpneinkjafambof |
Επίσημο URL | https://chrome.google.com/webstore/detail/youtube-new-tab-search/lballhcooobklchmpmpneinkjafambof |
Περιγραφή | 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. |
Μέγεθος Αρχείου | 51.23 KB |
Αριθμός Εγκαταστάσεων | 303 |
Τρέχουσα Έκδοση | 0.2 |
Τελευταία Ενημέρωση | 2017-09-04 |
Ημερομηνία Δημοσίευσης | 2017-09-04 |
Αξιολόγηση | 3.75/5 Συνολικά 12 Αξιολογήσεις |
Προγραμματιστής | Max Girkins |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } } |