YTPP
YTPP: YouTube Play/Pause without switching tabs
Co to jest YTPP?
YTPP to rozszerzenie Chrome opracowane przez spidergears, a jego główną funkcją jest „YTPP: YouTube Play/Pause without switching tabs”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YTPP
Pobierz pliki rozszerzeń YTPP w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        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.                     Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | onlhipebedljinheklgalifgbolcmndi | 
| Oficjalny URL | https://chromewebstore.google.com/detail/ytpp/onlhipebedljinheklgalifgbolcmndi | 
| Opis | YTPP: YouTube Play/Pause without switching tabs | 
| Rozmiar pliku | 10.16 KB | 
| Liczba instalacji | 23 | 
| Aktualna Wersja | 0.1 | 
| Ostatnia Aktualizacja | 2016-11-20 | 
| Data Publikacji | 2016-11-20 | 
| Ocena | 3.00/5 Łącznie 2 Oceny | 
| Deweloper | spidergears | 
| [email protected] | |
| Typ Płatności | free | 
| Obsługiwane Języki | 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"
            ]
        }
    ]
}  |  |