YouTabMan
A Web Extension used to control all of your YouTube tabs.
Was ist YouTabMan?
YouTabMan ist eine Chrome-Erweiterung, die von Theenadayalan entwickelt wurde, und ihr Hauptmerkmal ist "A Web Extension used to control all of your YouTube tabs.".
Erweiterungsscreenshots
YouTabMan-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTabMan-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
YouTabMan is a Web Extension to control all of your currently running Youtube videos at one place.
v1.3.2
- Pause button label name change fix
v1.3.0
- Migrated to VueJs framework
- Added loop button
- Hover next button view the next song
v1.2.0 - 1.2.3
- Search Event Fix
- Internal Fix
- Icon Update
- UI Fix
v1.1.0
- Replay Button Added
v1.0.0
- You will be having Play/Pause/Replay, Next, Mute Control inside YouTabMan.
- You can also able to close the tab if you want to.
- Searching is also possible in YouTabMan Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pfflnpdlbjjkgnelipgknanbnjafijgi |
| Offizielle URL | https://chromewebstore.google.com/detail/youtabman/pfflnpdlbjjkgnelipgknanbnjafijgi |
| Beschreibung | A Web Extension used to control all of your YouTube tabs. |
| Dateigröße | 45.28 KB |
| Installationsanzahl | 33 |
| Aktuelle Version | 1.3.2 |
| Letztes Update | 2019-04-02 |
| Veröffentlichungsdatum | 2019-04-02 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | Theenadayalan |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.theenadayalan.me |
| Hilfeseite URL | https://github.com/theenadayalank/youtabman |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTabMan",
"version": "1.3.2",
"description": "A Web Extension used to control all of your YouTube tabs.",
"browser_action": {
"default_title": "YouTabMan",
"default_popup": "index.html",
"default_icon": "logo.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"background.js"
]
}
],
"icons": {
"128": "logo.png"
},
"permissions": [
"activeTab",
"tabs",
"http:\/\/*\/",
"https:\/\/*\/"
]
} | |