YTPP

YTPP: YouTube Play/Pause without switching tabs

Apa itu YTPP?

YTPP adalah ekstensi Chrome yang dikembangkan oleh spidergears, dan fitur utamanya adalah "YTPP: YouTube Play/Pause without switching tabs".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi YTPP

Unduh file ekstensi YTPP dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama YTPP YTPP
ID onlhipebedljinheklgalifgbolcmndi
URL Resmi https://chromewebstore.google.com/detail/ytpp/onlhipebedljinheklgalifgbolcmndi
Deskripsi YTPP: YouTube Play/Pause without switching tabs
Ukuran File 10.16 KB
Jumlah Instalasi 23
Versi Saat Ini 0.1
Terakhir Diperbarui 2016-11-20
Tanggal Publikasi 2016-11-20
Penilaian 3.00/5 Total 2 Penilaian
Pengembang spidergears
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}