Smart Youtuber

'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by…

Smart Youtuber क्या है?

Smart Youtuber Mr Foo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Smart Youtuber एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by automatically pausing/playing videos in other tabs based on your current tab activity.


The following two-step scenario sums up the application behavior --

Step-1: You are playing some video in tab-1. You now open a new tab-2 and play another video. The application will automatically pause the video in tab-1. 

Step-2: Next, if you pause the tab-2 video, the application will automatically resume the tab-1 video. 

This can extend to any number of tabs or windows.


NOTE: This works only on www.YouTube.com at present. Videos in embedded mode are not supported.                    

एक्सटेंशन की मूल जानकारी

नाम Smart Youtuber Smart Youtuber
ID inmdnokekflmjbdljfljibopigogoeac
आधिकारिक URL https://chrome.google.com/webstore/detail/smart-youtuber/inmdnokekflmjbdljfljibopigogoeac
विवरण 'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by…
फ़ाइल का आकार 58.92 KB
स्थापना संख्या 73
वर्तमान संस्करण 0.1
अंतिम अपडेट 2016-06-07
प्रकाशन तिथि 2016-06-07
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर Mr Foo
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smart Youtuber",
    "version": "0.1",
    "permissions": [
        "contentSettings",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "Smart_Youtuber.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery-2.2.4.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}