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…”。
扩展截图
下载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.
扩展基本信息
名称 | |
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" ] } } |