Tubeit
Search and play YouTube videos without leaving your current tab. Tube it.
Tubeit क्या है?
Tubeit taehoon.lee द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Search and play YouTube videos without leaving your current tab. Tube it."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tubeit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Tubeit - the simplest way to search and watch YouTube videos. When you want to watch a YouTube video, search and play YouTube videos without opening a new tab. Extension Features: *Search for YouTube videos without opening a new tab *To play, simply click on thumbnails or titles *Watch videos on Fullscreen mode *Scroll to load more videos *Search bar is always active (you can search while the video is playing) *Popout a new window of the video you are watching Shortcut Key: Ctrl/Command + i version 1.0.2 : added "pop out" feature version 1.0.1 : auto focus on search bar when starting up
एक्सटेंशन की मूल जानकारी
नाम | |
ID | digjbkcgjnjhhkkamhibpkniphndgoid |
आधिकारिक URL | https://chrome.google.com/webstore/detail/tubeit/digjbkcgjnjhhkkamhibpkniphndgoid |
विवरण | Search and play YouTube videos without leaving your current tab. Tube it. |
फ़ाइल का आकार | 533 KB |
स्थापना संख्या | 768 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2014-06-30 |
प्रकाशन तिथि | 2014-06-30 |
रेटिंग | 4.62/5 कुल 26 रेटिंग्स |
डेवलपर | taehoon.lee |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://taehoonlee.com |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tubeit", "manifest_version": 2, "version": "1.0.2", "description": "Search and play YouTube videos without leaving your current tab. Tube it.", "icons": { "16": "img\/icon\/tubeit-16.png", "48": "img\/icon\/tubeit-48.png", "128": "img\/icon\/tubeit-128.png" }, "permissions": [ "tabs", "*:\/\/*.google.com\/*", "*:\/\/*.youtube.com\/*" ], "background": { "persistent": true, "page": "background.html" }, "browser_action": { "default_icon": "img\/icon\/tubeit-48.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/lib\/jquery-2.1.1.js", "js\/popup\/popup.js", "js\/background\/background.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.youtube.com\/player_api https:\/\/www.youtube.com 'unsafe-eval' https:\/\/www.youtube.com\/player_api https:\/\/www.youtube.com https:\/\/www.youtube.com\/iframe_api https:\/\/s.ytimg.com https:\/\/apis.google.com; object-src 'self' https:\/\/www.youtube.com", "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+I", "windows": "Ctrl+I", "mac": "Command+I" } } } } |