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によって開発されたChromeの拡張機能で、その主な機能は「'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by…」です。

拡張機能のスクリーンショット

screenshot

Smart Youtuber拡張機能のCRXファイルをダウンロード

Smart Youtuber拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        '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"
        ]
    }
}