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
官方網址 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"
        ]
    }
}