YouTube Play/Pause

On Clicking the icon of this extension, it will play/pause the video playing on YouTube.com

什么是YouTube Play/Pause?

YouTube Play/Pause是由Harshad Mane开发的Chrome扩展程序,该扩展的主要功能是“On Clicking the icon of this extension, it will play/pause the video playing on YouTube.com”。

扩展截图

screenshot

下载YouTube Play/Pause扩展crx文件

下载YouTube Play/Pause扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        You are listening to songs on YouTube while working and somebody comes to you, now you have to pause YouTube song but it is difficult to find the YouTube tab, or you just don't want your friend to know which song you were listening to.

Answer is simple, use this extension, click on the extension  icon and a pop-up UI will open, click Play/Pause button.

You can also,
 - "Play Next" track with a single click.
 - "Play Previous" track, if you are playing a play lsit.
 - A new button to open existing YouTube tab, if not already opened then it will open a new one
 

AdSkipper:
 - This feature is enabled by default with this extension 
 - This feature will smartly detect ads playing in YouTube, on detecting it will Mute the ad so that you don't hear those
 - Once the Ad shows "Skip Ad" button, the intelligent code will click on the button and will Unmute the video so that you will be able to enjoy the next Video

Feel free to let us know what features you will want!!



More features coming soon.                    

扩展基本信息

名称 YouTube Play/Pause YouTube Play/Pause
ID pmadkkbhfioemnigffhpgjockmoagmdm
官方URL https://chrome.google.com/webstore/detail/youtube-playpause/pmadkkbhfioemnigffhpgjockmoagmdm
简介 On Clicking the icon of this extension, it will play/pause the video playing on YouTube.com
文件大小 10.67 KB
安装次数 460
当前版本 0.4.0
更新时间 2019-08-23
上架时间 2019-08-19
评分 4.44/5 共9次评分
开发者 Harshad Mane
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Play\/Pause",
    "version": "0.4.0",
    "description": "On Clicking the icon of this extension, it will play\/pause the video playing on YouTube.com",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "YouTube Play\/Pause with AdSkipper",
        "default_icon": "icon-2.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "ad_skipper.js"
            ],
            "run_at": "document_end"
        }
    ]
}