YTPP

YTPP: YouTube Play/Pause without switching tabs

What is YTPP?

YTPP is a Chrome extension developed by spidergears, and its main feature is "YTPP: YouTube Play/Pause without switching tabs".

Extension Screenshots

screenshot

Download YTPP Extension CRX File

Download YTPP extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        YTPP: YouTube Play/Pause
Extension lets user play/pause youtube without having to switch tabs. Clicking the extension button toggles playback state for all open youtube tabs.                    

Extension Basic Information

Name YTPP YTPP
ID onlhipebedljinheklgalifgbolcmndi
Official URL https://chromewebstore.google.com/detail/ytpp/onlhipebedljinheklgalifgbolcmndi
Description YTPP: YouTube Play/Pause without switching tabs
File Size 10.16 KB
Installation Count 23
Current Version 0.1
Last Updated 2016-11-20
Publish Date 2016-11-20
Rating 3.00/5 Total 2 Ratings
Developer spidergears
Email [email protected]
Payment Type free
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YTPP",
    "short_name": "YTPP",
    "version": "0.1",
    "description": "YTPP: YouTube Play\/Pause without switching tabs",
    "icons": {
        "128": "icon.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "author": {
        "name": "spidergears",
        "twitter_handle": "spider_gears",
        "github": "http:\/\/github.com\/spidergears"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "YTPP"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "ytpp_background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "ytpp_content_script.js"
            ]
        }
    ]
}