YTPP
YTPP: YouTube Play/Pause without switching tabs
Wat is YTPP?
YTPP is een Chrome-extensie ontwikkeld door spidergears, en de belangrijkste functie is "YTPP: YouTube Play/Pause without switching tabs".
Extensie Screenshots
Download het CRX-bestand van de extensie YTPP
Download YTPP-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | onlhipebedljinheklgalifgbolcmndi |
| Officiële URL | https://chromewebstore.google.com/detail/ytpp/onlhipebedljinheklgalifgbolcmndi |
| Beschrijving | YTPP: YouTube Play/Pause without switching tabs |
| Bestandsgrootte | 10.16 KB |
| Aantal Installaties | 23 |
| Huidige Versie | 0.1 |
| Laatst Bijgewerkt | 2016-11-20 |
| Publicatiedatum | 2016-11-20 |
| Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | spidergears |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |