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 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 फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube New Tab Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } } |